Skip to content

Commit

Permalink
Commit triggered by a change on the main branch of helm-charts-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kalxas committed Jul 10, 2023
1 parent 938d5b5 commit 786491d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/rm-workspace-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ 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: 1.3.2
version: 1.3.5

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 1.3-dev5
appVersion: 1.3.0
7 changes: 7 additions & 0 deletions charts/rm-workspace-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ spec:
value: "{{ .Values.harborUrl }}"
- name: HARBOR_ADMIN_USERNAME
value: "{{ .Values.harborUsername }}"
{{- if .Values.harborPassword }}
- name: HARBOR_ADMIN_PASSWORD
value: "{{ .Values.harborPassword }}"
{{- end }}
- name: WORKSPACE_CHARTS_CONFIG_MAP
value: "{{ .Values.workspaceChartsConfigMap }}"
- name: REDIS_SERVICE_NAME
Expand All @@ -87,6 +89,11 @@ spec:
value: "{{ .Values.pepBaseUrl }}"
- name: AUTO_PROTECTION_ENABLED
value: "{{ .Values.autoProtectionEnabled }}"
{{- if .Values.harborPasswordSecretName }}
envFrom:
- secretRef:
name: {{ .Values.harborPasswordSecretName }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
3 changes: 2 additions & 1 deletion charts/rm-workspace-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ redisServiceName: "vs-redis-master"
harborUrl: ""
harborUsername: ""
harborPassword: ""
harborPasswordSecretName: ""
bucketEndpointUrl: ""
pepBaseUrl: ""
autoProtectionEnabled: "True"
autoProtectionEnabled: "True"

0 comments on commit 786491d

Please sign in to comment.