mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Adding the possibility to use registy on Docker image (#6372)
This commit is contained in:
committed by
k8s-ci-robot
parent
303aa19471
commit
b0061e9c20
@@ -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
|
||||
|
||||
@@ -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` |
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -31,6 +31,7 @@ resourcesToWatch:
|
||||
persistentvolume: false
|
||||
|
||||
image:
|
||||
registry: "docker.io"
|
||||
repository: "bitnami/kubewatch"
|
||||
tag: "0.0.4"
|
||||
pullPolicy: "Always"
|
||||
|
||||
Reference in New Issue
Block a user