Skip to content

Commit

Permalink
[saml]Bump version to 1.0.4 and add TLS configuration to ingress for …
Browse files Browse the repository at this point in the history
…secure connections
  • Loading branch information
Denan Musinovic committed Jan 27, 2025
1 parent 0066e70 commit ec5e918
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/vulnerablesamlapp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)
keywords:
- saml
version: 1.0.3
version: 1.0.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 8 additions & 0 deletions charts/vulnerablesamlapp/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ metadata:
{{ end }}
spec:
ingressClassName: nginx
tls:
- hosts:
- {{ .Values.ingress.url }}
secretName: {{ if eq .Values.ingress.cert "" }}distributorwildcard{{ else }}{{ .Values.ingress.cert }}{{ end }}
rules:
- host: {{ .Values.ingress.url }}
http:
Expand All @@ -39,6 +43,10 @@ metadata:
{{ end }}
spec:
ingressClassName: nginx
tls:
- hosts:
- idp-{{ .Values.ingress.url }}
secretName: {{ if eq .Values.ingress.cert "" }}distributorwildcard{{ else }}{{ .Values.ingress.cert }}{{ end }}
rules:
- host: idp-{{ .Values.ingress.url }}
http:
Expand Down

0 comments on commit ec5e918

Please sign in to comment.