-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Arc: new release image, enable target-allocator, add CI/CD proxy clus…
…ter (#977) [comment]: # (Note that your PR title should follow the conventional commit format: https://conventionalcommits.org/en/v1.0.0/#summary) # PR Description ### Chart: - Enable the target-allocator for Arc - Disable the HPA chart setting for Arc ### Pipeline: - Add deploying to an Arc CI/CD proxy cluster - Add running testkube after every merge and nightly for the Arc CI/CD cluster - Add BUILD_WINDOWS pipeline variable for faster building of the chart when just testing linux ### Tests: - README clarifications - Ignore proxy for some localhost curl calls in the tests
- Loading branch information
1 parent
d9b3ed9
commit 74a753d
Showing
8 changed files
with
144 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...r/deploy/addon-chart/azure-monitor-metrics-addon/templates/ama-metrics-collector-hpa.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
package utils | ||
|
||
|
||
var( | ||
// Slices can't be constants | ||
LogLineErrorsToExclude = [...]string{ | ||
// Metrics Extension | ||
"\"filepath\":\"/MetricsExtensionConsoleDebugLog.log\"", | ||
// Arc token adapter | ||
"create or renew cluster identity error", | ||
"get token from status error", | ||
// KSM | ||
"ended with: an error on the server", | ||
"Objects listed", | ||
// Target allocator | ||
"client connection lost", | ||
} | ||
var ( | ||
// Slices can't be constants | ||
LogLineErrorsToExclude = [...]string{ | ||
// Metrics Extension | ||
"\"filepath\":\"/MetricsExtensionConsoleDebugLog.log\"", | ||
// Arc token adapter | ||
"create or renew cluster identity error", | ||
"get token from status error", | ||
// Arc node-exporter | ||
"Failed to open directory, disabling udev device properties", | ||
// KSM | ||
"ended with: an error on the server", | ||
"Objects listed", | ||
// Target allocator | ||
"client connection lost", | ||
} | ||
) | ||
|
||
const ( | ||
OperatorLabel = "operator" | ||
ArcExtensionLabel = "arc-extension" | ||
WindowsLabel = "windows" | ||
ARM64Label = "arm64" | ||
FIPSLabel = "fips" | ||
LinuxDaemonsetCustomConfig = "linux-daemonset-custom-config" | ||
OperatorLabel = "operator" | ||
ArcExtensionLabel = "arc-extension" | ||
WindowsLabel = "windows" | ||
ARM64Label = "arm64" | ||
FIPSLabel = "fips" | ||
LinuxDaemonsetCustomConfig = "linux-daemonset-custom-config" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters