-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIFI-14148 Adapt to the idiosyncrasies of each cluster env
Signed-off-by: Carsten Schafer <[email protected]>
- Loading branch information
Carsten Schafer
authored and
Carsten Schafer
committed
Sep 19, 2024
1 parent
91f1f24
commit 7399215
Showing
6 changed files
with
59 additions
and
40 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
Empty file.
Empty file.
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,15 @@ | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: alpha.eksctl.io/nodegroup-name | ||
operator: In | ||
values: | ||
- gwmed | ||
|
||
tolerations: | ||
- effect: NoSchedule | ||
key: type | ||
operator: Equal | ||
value: onlygwmed |
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,16 @@ | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: alpha.eksctl.io/nodegroup-name | ||
operator: In | ||
values: | ||
- gwm5lrg | ||
|
||
tolerations: | ||
- effect: NoSchedule | ||
key: type | ||
operator: Equal | ||
value: onlygwm5lrg | ||
|
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,24 @@ | ||
public_env_variables: | ||
CGW_DB_HOST: pgsql | ||
CGW_DB_PORT: "5432" | ||
CGW_KAFKA_HOST: kafka | ||
CGW_KAFKA_PORT: "9092" | ||
CGW_REDIS_HOST: redis-master | ||
CGW_REDIS_PORT: "6379" | ||
CGW_ALLOW_CERT_MISMATCH: "yes" | ||
# use (#cpus * 2) - 2 | ||
DEFAULT_WSS_THREAD_NUM: "4" | ||
# Useful for debugging: | ||
#CGW_LOG_LEVEL: "debug" | ||
#RUST_BACKTRACE: "full" | ||
services: | ||
cgw: | ||
type: LoadBalancer | ||
annotations: | ||
#service.beta.kubernetes.io/aws-load-balancer-type: nlb-ip | ||
service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing | ||
service.beta.kubernetes.io/aws-load-balancer-backend-protocol: ssl | ||
service.beta.kubernetes.io/aws-load-balancer-healthcheck-port: "15003" | ||
service.beta.kubernetes.io/aws-load-balancer-target-group-attributes: preserve_client_ip.enabled=true | ||
service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "16002" | ||
alb.ingress.kubernetes.io/healthcheck-path: /health |