-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow configuring tolerations for the EG control plane installe…
…d via Helm (#3587) * feat: Allow configuring tolerations for the EG control plane Signed-off-by: Connor Rogers <[email protected]> * Fix indentation on topologySpreadConstraints and tolerations Signed-off-by: Connor Rogers <[email protected]> * Fix topologySpreadConstraints and tolerations type, and add tests Signed-off-by: Connor Rogers <[email protected]> * Fix indentation in input test values file Signed-off-by: Connor Rogers <[email protected]> --------- Signed-off-by: Connor Rogers <[email protected]>
- Loading branch information
Showing
7 changed files
with
623 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
global: | ||
images: | ||
envoyGateway: | ||
image: "docker.io/envoyproxy/gateway-dev:latest" | ||
pullPolicy: Always | ||
deployment: | ||
pod: | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: topology.kubernetes.io/zone | ||
operator: In | ||
values: | ||
- antarctica-east1 | ||
- antarctica-west1 | ||
topologySpreadConstraints: | ||
- topologyKey: kubernetes.io/hostname | ||
maxSkew: 1 | ||
whenUnsatisfiable: DoNotSchedule | ||
labelSelector: | ||
matchLabels: | ||
app: envoyproxy | ||
control-plane: envoy-control-plane | ||
- topologyKey: topology.kubernetes.io/zone | ||
maxSkew: 1 | ||
whenUnsatisfiable: ScheduleAnyway | ||
labelSelector: | ||
matchLabels: | ||
app: envoyproxy | ||
tolerations: | ||
- key: "custom.taint" | ||
operator: "Equal" | ||
value: "custom.value" |
Oops, something went wrong.