Skip to content

Commit

Permalink
add kubeadm image repo override
Browse files Browse the repository at this point in the history
  • Loading branch information
defo89 committed Feb 16, 2024
1 parent b02a853 commit e002e13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/seed/templates/kubeadm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ data:
timeoutForControlPlane: 4m0s
apiVersion: kubeadm.k8s.io/v1beta3
certificatesDir: /etc/kubernetes/pki
clusterName: "{{ .Values.shortName }}"
clusterName: "{{ .Values.name }}"
controlPlaneEndpoint: "{{ .Values.api.apiserverHost }}"
controllerManager:
extraArgs:
Expand All @@ -197,7 +197,7 @@ data:
etcd:
local:
dataDir: /var/lib/etcd
imageRepository: registry.k8s.io
imageRepository: {{ .Values.kubeadmImageRepository }}
kind: ClusterConfiguration
kubernetesVersion: {{ .Capabilities.KubeVersion.Version }}
networking:
Expand Down Expand Up @@ -230,7 +230,7 @@ data:
cgroupDriver: systemd
clusterDNS:
- {{ .Values.dns.address }}
clusterDomain: cluster.local
clusterDomain: {{ .Values.dns.domain }}
containerRuntimeEndpoint: ""
cpuManagerReconcilePeriod: 0s
evictionPressureTransitionPeriod: 0s
Expand Down
1 change: 1 addition & 0 deletions charts/seed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ version: {}
# kubernetes: 1.10.11

clusterAdminUser: TCC_D038720_01
kubeadmImageRepository: keppel.global.cloud.sap/ccloud-registry-k8s-io-mirror
# tlsCaCert:
# serviceCIDR

Expand Down

0 comments on commit e002e13

Please sign in to comment.