Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Respect initContainers.pullPolicy, init.image.pullPolicy, and nodeAgent.image.pullPolicy #1148

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/appmesh-spire-agent/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: appmesh-spire-agent
description: SPIRE Agent Helm chart for AppMesh mTLS support on Kubernetes
version: 1.0.7
version: 1.0.8
appVersion: 1.5.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
1 change: 1 addition & 0 deletions stable/appmesh-spire-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ spec:
initContainers:
- name: init
image: "{{ .Values.initContainers.image }}"
imagePullPolicy: {{ .Values.initContainers.pullPolicy }}
args:
- -t
- "30"
Expand Down
2 changes: 1 addition & 1 deletion stable/aws-vpc-cni/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: aws-vpc-cni
version: 1.18.3
version: 1.18.4
appVersion: "v1.18.3"
description: A Helm chart for the AWS VPC CNI
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
2 changes: 2 additions & 0 deletions stable/aws-vpc-cni/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ spec:
initContainers:
- name: aws-vpc-cni-init
image: {{ include "aws-vpc-cni.initImage" . }}
imagePullPolicy: {{ .Values.init.image.pullPolicy }}
env:
{{- range $key, $value := .Values.init.env }}
- name: {{ $key }}
Expand Down Expand Up @@ -126,6 +127,7 @@ spec:
{{- if .Values.nodeAgent.enabled }}
- name: aws-eks-nodeagent
image: {{ include "aws-vpc-cni.nodeAgentImage" . }}
imagePullPolicy: {{ .Values.nodeAgent.image.pullPolicy }}
env:
- name: MY_NODE_NAME
valueFrom:
Expand Down
Loading