Skip to content
6 changes: 3 additions & 3 deletions charts/aws-vpc-cni/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The following table lists the configurable parameters for this chart and their d
| `image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
| `image.endpoint` | ECR repository endpoint to use. | `ecr` |
| `image.account` | ECR repository account number | `602401143452` |
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
| `image.pullPolicy` | Container pull policy | `Always` |
| `image.overrideRepository` | Repository override for the image (does not change the tag) | `nil` |
| `image.override` | A custom docker image to use | `nil` |
| `imagePullSecrets` | Docker registry pull secret | `[]` |
Expand All @@ -62,7 +62,7 @@ The following table lists the configurable parameters for this chart and their d
| `init.image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
| `init.image.endpoint` | ECR repository endpoint to use. | `ecr` |
| `init.image.account` | ECR repository account number | `602401143452` |
| `init.image.pullPolicy` | Container pull policy | `IfNotPresent` |
| `init.image.pullPolicy` | Container pull policy | `Always` |
| `init.image.overrideRepository` | Repository override for the image (does not change the tag) | `nil` |
| `init.image.override` | A custom docker image to use | `nil` |
| `init.env` | List of init container environment variables. See [here](https://github.com/aws/amazon-vpc-cni-k8s#cni-configuration-variables) for options | (see `values.yaml`) |
Expand All @@ -76,7 +76,7 @@ The following table lists the configurable parameters for this chart and their d
| `nodeAgent.image.region`| ECR repository region to use. Should match your cluster | `us-west-2` |
| `nodeAgent.image.endpoint` | ECR repository endpoint to use. | `ecr` |
| `nodeAgent.image.account` | ECR repository account number | `602401143452` |
| `nodeAgent.image.pullPolicy` | Container pull policy | `IfNotPresent` |
| `nodeAgent.image.pullPolicy` | Container pull policy | `Always` |
| `nodeAgent.image.overrideRepository` | Repository override for the image (does not change the tag) | `nil` |
| `nodeAgent.image.override` | A custom docker image to use | `nil` |
| `nodeAgent.securityContext` | Node Agent container Security context | `capabilities: add: - "NET_ADMIN" privileged: true` |
Expand Down
1 change: 1 addition & 0 deletions charts/aws-vpc-cni/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ spec:
containers:
- name: aws-node
image: {{ include "aws-vpc-cni.image" . }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: 61678
name: metrics
Expand Down
6 changes: 3 additions & 3 deletions charts/aws-vpc-cni/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ init:
region: us-west-2
endpoint: ecr
account: "602401143452"
pullPolicy: Always
pullPolicy: IfNotPresent
# Set to use custom image
overrideRepository:
# overrideRepository: "repo/org/image"
Expand All @@ -34,7 +34,7 @@ nodeAgent:
region: us-west-2
endpoint: ecr
account: "602401143452"
pullPolicy: Always
pullPolicy: IfNotPresent
# Set to use custom image
overrideRepository:
# overrideRepository: "repo/org/image"
Expand All @@ -61,7 +61,7 @@ image:
region: us-west-2
endpoint: ecr
account: "602401143452"
pullPolicy: Always
pullPolicy: IfNotPresent
# Set to use custom image
overrideRepository:
# overrideRepository: "repo/org/image"
Expand Down
Loading