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
In order to get for example HTTP-01 challenge working custom labels should be honored by the ingress template.
values.yaml
ingress: enabled: true className: external annotations: cert-manager.io/cluster-issuer: letsencrypt-production acme.cert-manager.io/http01-edit-in-place: "true" labels: use-http01-solver: "true" <----
templates/ingress.yaml
... kind: Ingress metadata: name: {{ $fullName }} labels: app.kubernetes.io/name: {{ include "privatebin.name" . }} helm.sh/chart: {{ include "privatebin.chart" . }} app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} {{- with .Values.ingress.labels }} <---- {{- toYaml . | nindent 4 }} {{- end }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to get for example HTTP-01 challenge working custom labels should be honored by the ingress template.
values.yaml
templates/ingress.yaml
The text was updated successfully, but these errors were encountered: