Skip to content

Commit

Permalink
Fix ingressClassName
Browse files Browse the repository at this point in the history
  • Loading branch information
rielas committed Mar 12, 2024
1 parent aebb202 commit 49353bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/brokencrystals/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: |
Benchmark application that uses modern technologies and implements a set of
common security vulnerabilities
type: application
version: 0.0.48
version: 0.0.49
keywords:
- brokencrystals
- brkn
4 changes: 2 additions & 2 deletions charts/brokencrystals/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ metadata:
name: {{ include "brokencrystals.fullname" . }}
namespace: {{ .Release.Namespace }}
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-ssl-protocols: "TLSv1.1 TLSv1.2"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
{{ if eq .Values.ingress.cert "" }}
cert-manager.io/cluster-issuer: letsencrypt-cf-prod
{{ end }}
spec:
ingressClassName: nginx
tls:
- hosts:
- {{ .Values.ingress.url }}
Expand All @@ -35,13 +35,13 @@ metadata:
name: {{ include "brokencrystals.fullname" . }}-keycloak
namespace: {{ .Release.Namespace }}
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/proxy-ssl-protocols: "TLSv1.1 TLSv1.2"
{{ if eq .Values.ingress.cert "" }}
cert-manager.io/cluster-issuer: letsencrypt-cf-prod
{{ end }}
spec:
ingressClassName: nginx
tls:
- hosts:
- auth{{ .Values.ingress.authlevel }}{{ .Values.ingress.url }}
Expand Down

0 comments on commit 49353bd

Please sign in to comment.