Initial commit
This commit is contained in:
commit
7724a7614e
24 changed files with 1653 additions and 0 deletions
11
app/helm/templates/secret-docker.yml
Normal file
11
app/helm/templates/secret-docker.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{{- if and (.Values.dockerRegistry) (.Values.dockerRegistryAuth) }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: kubernetes.io/dockerconfigjson
|
||||
metadata:
|
||||
name: sentry-demo-app-docker
|
||||
labels:
|
||||
release: {{ .Release.Name }}
|
||||
stringData:
|
||||
.dockerconfigjson: '{"auths": {"{{ .Values.dockerRegistry }}": {"auth": "{{ .Values.dockerRegistryAuth }}"}}}'
|
||||
{{ end }}
|
||||
Reference in a new issue