Guillaume B.B. Van Hemmen
02ad42a186
Rename and reorganize scripts and configuration files for clarity. Updated `02_install_cert_manager.sh` to reference a new Helm values file for better configurability. Introduced nodeSelector and tolerations in `helm-values/cert-manager.yaml` for targeted deployment.
43 lines
984 B
YAML
43 lines
984 B
YAML
# Global settings for nodeSelector and tolerations
|
|
nodeSelector:
|
|
com.van-hemmen.role: gateway
|
|
com.van-hemmen.hosting: ovh
|
|
|
|
tolerations:
|
|
- key: "com.van-hemmen.role"
|
|
operator: "Equal"
|
|
value: "gateway"
|
|
effect: "NoSchedule"
|
|
|
|
# startupapicheck specific settings
|
|
startupapicheck:
|
|
nodeSelector:
|
|
com.van-hemmen.role: gateway
|
|
com.van-hemmen.hosting: ovh
|
|
tolerations:
|
|
- key: "com.van-hemmen.role"
|
|
operator: "Equal"
|
|
value: "gateway"
|
|
effect: "NoSchedule"
|
|
|
|
# Cainjector specific settings
|
|
cainjector:
|
|
nodeSelector:
|
|
com.van-hemmen.role: gateway
|
|
com.van-hemmen.hosting: ovh
|
|
tolerations:
|
|
- key: "com.van-hemmen.role"
|
|
operator: "Equal"
|
|
value: "gateway"
|
|
effect: "NoSchedule"
|
|
|
|
# Webhook specific settings
|
|
webhook:
|
|
nodeSelector:
|
|
com.van-hemmen.role: gateway
|
|
com.van-hemmen.hosting: ovh
|
|
tolerations:
|
|
- key: "com.van-hemmen.role"
|
|
operator: "Equal"
|
|
value: "gateway"
|
|
effect: "NoSchedule"
|