File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ You can customize the values of the helm deployment by using the following Value
3333| ` nameOverride ` | Overrides release name | ` "" ` |
3434| ` fullnameOverride ` | Overrides release fullname | ` "" ` |
3535| ` image.repository ` | Container image repository | ` emberstack/kubernetes-reflector ` |
36- | ` image.tag ` | Container image tag | ` latest ` |
37- | ` image.pullPolicy ` | Container image pull policy | ` Always ` if ` image.tag ` is ` latest ` , else ` IfNotPresent ` |
36+ | ` image.tag ` | Container image tag | ` Same as chart version ` |
37+ | ` image.pullPolicy ` | Container image pull policy | ` IfNotPresent ` |
3838| ` extensions.certManager.enabled ` | ` cert-manager ` addon | ` true ` |
3939| ` configuration.logging.minimumLevel ` | Logging minimum level | ` Information ` |
4040| ` rbac.enabled ` | Create and use RBAC resources | ` true ` |
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ The configuration parameters in this section control the resources requested and
2424| ` nameOverride ` | Overrides release name | ` "" ` |
2525| ` fullnameOverride ` | Overrides release fullname | ` "" ` |
2626| ` image.repository ` | Container image repository | ` emberstack/kubernetes-reflector ` |
27- | ` image.tag ` | Container image tag | ` latest ` |
28- | ` image.pullPolicy ` | Container image pull policy | ` Always ` if ` image.tag ` is ` latest ` , else ` IfNotPresent ` |
27+ | ` image.tag ` | Container image tag | ` Same as chart version ` |
28+ | ` image.pullPolicy ` | Container image pull policy | ` IfNotPresent ` |
2929| ` extensions.certManager.enabled ` | ` cert-manager ` addon | ` true ` |
3030| ` configuration.logging.minimumLevel ` | Logging minimum level | ` Information ` |
3131| ` rbac.enabled ` | Create and use RBAC resources | ` true ` |
Original file line number Diff line number Diff line change 2222 spec :
2323 containers :
2424 - name : {{ .Chart.Name }}
25+ {{- if .Values.image.tag }}
2526 image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
27+ {{- else }}
28+ image : " {{ .Values.image.repository }}:{{ .Chart.Version }}"
29+ {{- end }}
2630 imagePullPolicy : {{ .Values.image.pullPolicy }}
2731 env :
2832 - name : ES_Reflector__Extensions__CertManager__Enabled
Original file line number Diff line number Diff line change 44
55image :
66 repository : emberstack/es.kubernetes.reflector
7- tag : latest
8- pullPolicy : Always
7+ tag : " "
8+ pullPolicy : IfNotPresent
99
1010nameOverride : " "
1111fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments