Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

helm: add back 'wellKnownIdentities' #16142

Merged
merged 1 commit into from
May 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Documentation/operations/upgrade.rst
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,8 @@ Full list of updated Helm values:
+----------------------------------------------+--------------------------------------------+
| global.tunnel | tunnel |
+----------------------------------------------+--------------------------------------------+
| global.wellKnownIdentities.enabled | wellKnownIdentities.enabled |
+----------------------------------------------+--------------------------------------------+

Renamed Metrics
~~~~~~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions Documentation/spelling_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ waitForMount
waker
walkthrough
webservice
wellKnownIdentities
whitelist
whitelisted
whitelisting
Expand Down
1 change: 1 addition & 0 deletions install/kubernetes/cilium/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ contributors across the globe, there is almost always someone available to help.
| tolerations | list | `[{"operator":"Exists"}]` | Node tolerations for agent scheduling to nodes with taints ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ |
| tunnel | string | `"vxlan"` | Configure the encapsulation configuration for communication between nodes. Possible values: - disabled - vxlan (default) - geneve |
| updateStrategy | object | `{"rollingUpdate":{"maxUnavailable":2},"type":"RollingUpdate"}` | Cilium agent update strategy |
| wellKnownIdentities.enabled | bool | `false` | Enable the use of well-known identities. |
2 changes: 1 addition & 1 deletion install/kubernetes/cilium/templates/cilium-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ data:
{{- if hasKey .Values "healthChecking" }}
enable-health-checking: {{ .Values.healthChecking | quote }}
{{- end }}
{{- if .Values.etcd.managed }}
{{- if or .Values.wellKnownIdentities.enabled .Values.etcd.managed }}
enable-well-known-identities: "true"
{{- else }}
enable-well-known-identities: "false"
Expand Down
5 changes: 5 additions & 0 deletions install/kubernetes/cilium/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1066,6 +1066,11 @@ tls:
# - geneve
tunnel: "vxlan"

wellKnownIdentities:
# -- Enable the use of well-known identities.
enabled: false


etcd:
# -- Enable etcd mode for the agent.
enabled: false
Expand Down