Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
Adapt apiserver and kubelet flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Erkan Erol committed May 25, 2022
1 parent 4ee638c commit 9258122
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions helm/cluster-openstack/templates/kubeadm_control_plane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ spec:
certSANs:
- "api.{{ include "resource.default.name" $ }}.{{ .Values.baseDomain }}"
extraArgs:
anonymous-auth: "false"
cloud-provider: external
enable-admission-plugins: "NamespaceLifecycle,LimitRanger,ServiceAccount,ResourceQuota,PersistentVolumeClaimResize,DefaultStorageClass,Priority,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook"
feature-gates: "TTLAfterFinished=true"
insecure-port: "0"
kubelet-preferred-address-types: "InternalIP"
logtostderr: "true"
{{- if .Values.oidc.issuerUrl }}
{{- with .Values.oidc }}
oidc-issuer-url: {{ .issuerUrl }}
Expand All @@ -24,6 +30,10 @@ spec:
{{- end }}
{{- end }}
{{- end }}
profiling: "false"
requestheader-allowed-names: "aggregator,api.{{ include "resource.default.name" $ }}.{{ .Values.baseDomain }},worker.{{ include "resource.default.name" $ }}.{{ .Values.baseDomain }}"
runtime-config: "api/all=true"
tls-cipher-suites: "TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_256_GCM_SHA384"
controllerManager:
extraArgs:
authorization-always-allow-paths: "/healthz,/readyz,/livez,/metrics"
Expand Down

0 comments on commit 9258122

Please sign in to comment.