komodorio / helm-charts

Komodor.io public helm charts
Other
70 stars 26 forks source link

Nginx ingress 404 after deploy #326

Closed linonetwo closed 5 days ago

linonetwo commented 5 days ago
helm repo add komodorio https://helm-charts.komodor.io
helm repo update
helm pull komodorio/helm-dashboard --untar

modify value

dashboard:
  persistence:
    size: 1000M
ingress:
  enabled: true
  className: ""
  annotations: {}
  hosts:
    - host: helm.xxx.site
      paths:
        - path: /
          pathType: ImplementationSpecific
  tls:
    - hosts:
        - helm.xxx.site
      secretName: "tls-secret"
helm upgrade --install helm-dashboard ./helm-dashboard --namespace helm-dashboard
kubectl create secret tls tls-secret --cert='/fullchain.cer' --key='/cert.key' -n helm-dashboard

Got 404 Not Found nginx after it started.

linonetwo commented 5 days ago

I forget to add className: "nginx"

Thanks for the great app!