Merge pull request 'release/v1.29' (#368) from release/v1.29 into main

Reviewed-on: #368
This commit is contained in:
Stefan Reimer 2024-08-24 10:33:33 +00:00
commit cd093fd2ac
5 changed files with 12 additions and 6 deletions

View File

@ -31,8 +31,10 @@ cert-manager:
nodeSelector:
node-role.kubernetes.io/control-plane: ""
{{ with index .Values "cert-manager" "IamArn" }}
extraEnv:
- name: AWS_REGION
value: {{ .Values.global.aws.region }}
{{ with index .Values "cert-manager" "IamArn" }}
- name: AWS_ROLE_ARN
value: "{{ . }}"
- name: AWS_WEB_IDENTITY_TOKEN_FILE

View File

@ -3,6 +3,10 @@
gateway:
name: istio-private-ingressgateway
{{- if ne .Values.global.platform "gke" }}
priorityClassName: "system-cluster-critical"
{{- end }}
{{- with index .Values "istio-private-ingress" "gateway" "replicaCount" }}
replicaCount: {{ . }}
{{- if gt (int .) 1 }}
@ -11,7 +15,7 @@ gateway:
{{- end }}
{{- end }}
{{- if not (index .Values "istio-private-ingress" "gateway" "affinity") }}
{{- if eq .Values.global.platform "aws" }}
# Only nodes who are fronted with matching LB
affinity:
nodeAffinity:

View File

@ -7,8 +7,8 @@ kubezero:
global:
clusterName: zdt-trial-cluster
# platform: aws (kubeadm), gke, or nocloud ( default )
platform: "nocloud"
# platform: aws (kubeadm, default), gke, or nocloud
platform: "aws"
highAvailable: false