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: Improved description for tunnel, tunnelProtocol, routingMode flags #27926

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
8 changes: 4 additions & 4 deletions Documentation/helm-values.rst

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Documentation/spelling_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ rn
roadmap
rollout
routable
routingMode
rst
runnable
runtimes
Expand Down Expand Up @@ -668,6 +669,7 @@ toolchain
tracepoint
tracepoints
transpiling
tunnelProtocol
ubuntu
udp
ui
Expand Down
6 changes: 3 additions & 3 deletions install/kubernetes/cilium/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion install/kubernetes/cilium/values.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion install/kubernetes/cilium/values.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2161,17 +2161,27 @@ tls:
# -----END CERTIFICATE-----

# -- Configure the encapsulation configuration for communication between nodes.
# Deprecated in favor of tunnelProtocol and routingMode. To be removed in 1.15.
# Possible values:
# - disabled
# - vxlan (default)
# - vxlan
# - geneve
# @default -- `"vxlan"`
tunnel: ""

# -- Tunneling protocol to use in tunneling mode and for ad-hoc tunnels.
# Possible values:
# - ""
# - vxlan
# - geneve
# @default -- `"vxlan"`
tunnelProtocol: ""

# -- Enable native-routing mode or tunneling mode.
# Possible values:
# - ""
# - native
# - tunnel
# @default -- `"tunnel"`
routingMode: ""

Expand Down