Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aram0112 committed Apr 23, 2023
1 parent 793b87d commit 274af76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/amps/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.10
version: 0.3.11

# 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
6 changes: 3 additions & 3 deletions charts/amps/templates/secret/amps-ssl.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{{ if .Values.ui.ssl.cert }}
{{ if .Values.ssl.cert }}
apiVersion: v1
kind: Secret
metadata:
name: amps-ssl
type: Opaque
data:
ssl.crt: { { .Values.ssl.cert | b64enc } }
ssl.key: { { .Values.ssl.key | b64enc } }
ssl.crt: {{ .Values.ssl.cert | b64enc }}
ssl.key: {{ .Values.ssl.key | b64enc }}
{{ end }}

0 comments on commit 274af76

Please sign in to comment.