We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I enable the Kong HTTP proxy:
kong: proxy: type: ClusterIP http: enabled: true
and disable SSL for the Kubernetes Dashboard, the Helm chart still uses the Kong TLS service port instead of the HTTP port:
name: {{ template "kong.fullname" (index $.Subcharts "kong") }}-proxy port: number: {{ $.Values.kong.proxy.tls.servicePort }}
Even though TLS is disabled, the HTTP port is not being used. For example, with the following configuration:
app: mode: 'dashboard' ingress: enabled: true hosts: - my-hostname.example.com ingressClassName: traefik useDefaultAnnotations: false tls: enabled: false annotations: kubernetes.io/ingress.class: "traefik"
I expect the Kong HTTP port to be used when TLS is disabled on the ingress side. However, the chart still references the TLS service port.
I simply install kubernetes-dashboard via helm using helmfile:
helmfile.yaml:
repositories: - name: kubernetes-dashboard url: https://kubernetes.github.io/dashboard/ releases: - name: kubernetes-dashboard namespace: kubernetes-dashboard chart: kubernetes-dashboard/kubernetes-dashboard version: 7.10.1 installed: true createNamespace: true disableValidation: true values: - values.yaml.gotmpl
values.yaml.gotmpl
app: mode: 'dashboard' ingress: enabled: true hosts: - my-hostname.example.com ingressClassName: traefik useDefaultAnnotations: false tls: enabled: false annotations: kubernetes.io/ingress.class: "traefik" kong: proxy: http: enabled: true
No response
helm version 7.10.1
v1.30.5
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What happened?
When I enable the Kong HTTP proxy:
and disable SSL for the Kubernetes Dashboard, the Helm chart still uses the Kong TLS service port instead of the HTTP port:
Even though TLS is disabled, the HTTP port is not being used. For example, with the following configuration:
What did you expect to happen?
I expect the Kong HTTP port to be used when TLS is disabled on the ingress side. However, the chart still references the TLS service port.
How can we reproduce it (as minimally and precisely as possible)?
I simply install kubernetes-dashboard via helm using helmfile:
helmfile.yaml:
values.yaml.gotmpl
Anything else we need to know?
No response
What browsers are you seeing the problem on?
No response
Kubernetes Dashboard version
helm version 7.10.1
Kubernetes version
v1.30.5
Dev environment
No response
The text was updated successfully, but these errors were encountered: