Adding the possibility to use registy on Docker image (#6372)

This commit is contained in:
Juan Ariza Toledano
2018-06-28 06:45:22 -07:00
committed by k8s-ci-robot
parent 303aa19471
commit b0061e9c20
4 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: kubewatch
version: 0.4.0
version: 0.4.1
apiVersion: v1
appVersion: v0.0.4
home: https://github.com/bitnami-labs/kubewatch
+1
View File
@@ -40,6 +40,7 @@ The following table lists the configurable parameters of the kubewatch chart and
| Parameter | Description | Default |
| ---------------------------------------- | ------------------------------------ | --------------------------------- |
| `affinity` | node/pod affinities | None |
| `image.registry` | Image registry | `docker.io` |
| `image.repository` | Image repository | `bitnami/kubewatch` |
| `image.tag` | Image tag | `{VERSION}` |
| `image.pullPolicy` | Image pull policy | `Always` |
+1 -1
View File
@@ -29,7 +29,7 @@ spec:
spec:
containers:
- name: {{ template "kubewatch.name" . }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
volumeMounts:
- name: {{ template "kubewatch.name" . }}-config-map
+1
View File
@@ -31,6 +31,7 @@ resourcesToWatch:
persistentvolume: false
image:
registry: "docker.io"
repository: "bitnami/kubewatch"
tag: "0.0.4"
pullPolicy: "Always"