João Francisco
João Francisco
I think that label, `app=concourse-worker`, may be coming from the [HPA](https://github.com/concourse/concourse-chart/blob/master/templates/worker-horizontal-pod-autoscaler.yaml#L8)
Hey! Did you configure the `ingress` section of your `values.yaml`? Specifically, did you enable the ingress? - https://github.com/verdaccio/charts/blob/master/charts/verdaccio/values.yaml#L44 You can check if the ingress exists with `kubectl get ingress -n...
Did you create it independently? You seem to have configured the service, but not necessarily the ingress. You can try configuring it in the `values.yaml` file like: ```yaml ingress: enabled:...
That will depend on the tools you're using. Assuming it's Helm, something like `helm upgrade --reuse-values verdaccio/verdaccio -n --set ingress.enabled=true` should work.
The `upgrade` command should replace the values after `--set`, so you don't have to redeploy just to change one value. I think you can also do it with a file,...
Yes, if you have an ingress already you may use it, if properly configured. In that case, keep the ingress from the chart disabled.
Is this a typo in the ingress, or just in your comment? `serviceName: vpmserver-verdaccio` I'm guessing it should be `serviceName: npmserver-verdaccio`.
My ingress, created from the Helm chart, for AWS/EKS, looks something like this: ```yaml apiVersion: extensions/v1beta1 kind: Ingress spec: rules: - host: npm.domain.com http: paths: - backend: serviceName: verdaccio-verdaccio servicePort:...
Could this be a namespace issue? Is your service in the same namespace as the ingress? My service looks pretty similar to yours.
Can you share the output of `kubectl get ingress -n ` and `kubectl get svc -n `?