Skip to content
Snippets Groups Projects
Unverified Commit 6bff338b authored by charlychiu's avatar charlychiu Committed by GitHub
Browse files

fix: hubble relay tls error (#9457)

parent c7886205
Branches
Tags
No related merge requests found
...@@ -175,7 +175,7 @@ data: ...@@ -175,7 +175,7 @@ data:
{% endif %} {% endif %}
hubble-listen-address: ":4244" hubble-listen-address: ":4244"
{% if cilium_enable_hubble and cilium_hubble_install %} {% if cilium_enable_hubble and cilium_hubble_install %}
hubble-disable-tls: "false" hubble-disable-tls: "{% if cilium_hubble_tls_generate %}false{% else %}true{% endif %}"
hubble-tls-cert-file: /var/lib/cilium/tls/hubble/server.crt hubble-tls-cert-file: /var/lib/cilium/tls/hubble/server.crt
hubble-tls-key-file: /var/lib/cilium/tls/hubble/server.key hubble-tls-key-file: /var/lib/cilium/tls/hubble/server.key
hubble-tls-client-ca-files: /var/lib/cilium/tls/hubble/client-ca.crt hubble-tls-client-ca-files: /var/lib/cilium/tls/hubble/client-ca.crt
......
...@@ -16,7 +16,8 @@ data: ...@@ -16,7 +16,8 @@ data:
tls-client-cert-file: /var/lib/hubble-relay/tls/client.crt tls-client-cert-file: /var/lib/hubble-relay/tls/client.crt
tls-client-key-file: /var/lib/hubble-relay/tls/client.key tls-client-key-file: /var/lib/hubble-relay/tls/client.key
tls-hubble-server-ca-files: /var/lib/hubble-relay/tls/hubble-server-ca.crt tls-hubble-server-ca-files: /var/lib/hubble-relay/tls/hubble-server-ca.crt
disable-server-tls: true disable-server-tls: {% if cilium_hubble_tls_generate %}false{% else %}true{% endif %}
disable-client-tls: {% if cilium_hubble_tls_generate %}false{% else %}true{% endif %}
--- ---
# Source: cilium/templates/hubble-ui-configmap.yaml # Source: cilium/templates/hubble-ui-configmap.yaml
apiVersion: v1 apiVersion: v1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment