Fix imagePullPolicy for apache bitnami chart

This commit is contained in:
tompizmor
2018-05-30 12:50:45 +02:00
parent 5d455d3427
commit 5ff6cd0539
2 changed files with 2 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ The following tables lists the configurable parameters of the Apache chart and t
| `image.registry` | Apache image registry | `docker.io` |
| `image.repository` | Apache Image name | `bitnami/apache` |
| `image.tag` | Apache Image tag | `{VERSION}` |
| `image.pullPolicy` | Apache image pull policy | `Always` if `imageTag` is `latest`, else `IfNotPresent` |
| `image.pullPolicy` | Apache image pull policy | `Always` |
| `image.pullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

View File

@@ -6,10 +6,9 @@ image:
repository: bitnami/apache
tag: 2.4.33
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/