Skip to content

Commit

Permalink
Merge pull request #175 from alan-walsh/fix/portal-secrets
Browse files Browse the repository at this point in the history
Small fix for portal secret
  • Loading branch information
EliseCastle23 authored May 30, 2024
2 parents bae6bf7 + 6190d6d commit 95c0e9a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions helm/gen3/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies:
repository: "file://../pidgin"
condition: pidgin.enabled
- name: portal
version: 0.1.13
version: 0.1.14
repository: "file://../portal"
condition: portal.enabled
- name: requestor
Expand Down Expand Up @@ -119,7 +119,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.1.33
version: 0.1.34

# 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
2 changes: 1 addition & 1 deletion helm/portal/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.1.13
version: 0.1.14

# 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: 4 additions & 4 deletions helm/portal/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ metadata:
name: portal-config
data:
{{- if .Values.gitops.createdby }}
gitops-createdby: |
gitops-createdby.png: |
{{- .Values.gitops.createdby | nindent 4 }}
{{- else }}
gitops-createdby: |
gitops-createdby.png: |
{{- (.Files.Get "defaults/gitops-createdby.png" | b64enc) | nindent 4 }}
{{- end }}
{{- if .Values.gitops.css }}
Expand All @@ -19,10 +19,10 @@ data:
{{- end }}
{{- if .Values.gitops.favicon }}
gitops-favicon.ico: |
{{- .Values.gitops.favicon | b64enc | nindent 4 }}
{{- .Values.gitops.favicon | nindent 4 }}
{{- else }}
gitops-favicon.ico: |
{{- (.Files.Get "defaults/gitops-favicon.ico" ) | nindent 4 }}
{{- (.Files.Get "defaults/gitops-favicon.ico" | b64enc) | nindent 4 }}
{{- end }}
{{- if .Values.gitops.json }}
gitops.json: |
Expand Down

0 comments on commit 95c0e9a

Please sign in to comment.