Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions chart/examples/microk8s-hosted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ ingress:

scheme: "https"
tls: true
# Optional for Certificate from other authority already added to microk8s as secret
# Secret must be added like, assumed command is executed in the path of my-key.key and my-cert.crt
# microk8s kubectl create secret tls onb-tls --namespace default --key=my-key.key --cert=my-cert.crt -o yaml
# secretName: my-secret

ingress_class: "public"

Expand Down
2 changes: 1 addition & 1 deletion chart/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
tls:
- hosts:
- {{ .Values.ingress.host }}
secretName: cert-main
secretName: {{ .Values.ingress.secretName | default "cert-main" }}
{{- end }}

rules:
Expand Down
Loading