File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: common-object-management-service
3
3
# This is the chart version. This version number should be incremented each time you make changes
4
4
# to the chart and its templates, including the app version.
5
5
# Versions are expected to follow Semantic Versioning (https://semver.org/)
6
- version : 0.0.3
6
+ version : 0.0.4
7
7
kubeVersion : " >= 1.13.0"
8
8
description : A microservice for managing access control to S3 Objects
9
9
# A chart can be either an 'application' or a 'library' chart.
Original file line number Diff line number Diff line change @@ -4,14 +4,9 @@ apiVersion: v1
4
4
kind : ConfigMap
5
5
metadata :
6
6
name : {{ include "coms.configname" . }}-config
7
- labels :
8
- {{- include "coms.labels" . | nindent 4 }}
9
- {{- with .Values.route.annotations }}
7
+ {{- if not .Values.config.releaseScoped }}
10
8
annotations :
11
- {{- if not .Values.config.releaseScoped }}
12
9
" helm.sh/resource-policy " : keep
13
- {{- end }}
14
- {{- toYaml . | nindent 4 }}
15
10
{{- end }}
16
11
data : {{ toYaml .Values.config.configMap | nindent 2 }}
17
12
{{- end }}
Original file line number Diff line number Diff line change 1
1
{{- $password := (randAlphaNum 32) | b64enc }}
2
2
{{- $username := (randAlphaNum 32) | b64enc }}
3
3
4
- {{- $secretName := printf "%s-%s" (include "coms.configname " .) "basicauth" }}
4
+ {{- $secretName := printf "%s-%s" (include "coms.fullname " .) "basicauth" }}
5
5
{{- $secret := (lookup "v1" "Secret" .Release.Namespace $secretName ) }}
6
6
{{- if not $secret }}
7
7
---
You can’t perform that action at this time.
0 commit comments