Skip to content

Commit c041a60

Browse files
committed
Helm chart update to 1.9.3
1 parent c6b8a31 commit c041a60

File tree

26 files changed

+279
-27
lines changed

26 files changed

+279
-27
lines changed

helm/ingress-azure/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "1.9.0"
2+
appVersion: "1.9.3"
33
description: Use Azure Application Gateway as the ingress for an Azure Kubernetes Service cluster.
44
name: ingress-azure
5-
version: 1.9.0
5+
version: 1.9.3

helm/ingress-azure/tests/snapshots/sample-config-addon/ingress-azure/templates/cleanup-job.yaml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,62 @@ spec:
5252
matchExpressions:
5353
- key: kubernetes.cloud.com/cluster
5454
operator: Exists
55+
tolerations:
56+
- key: CriticalAppsOnly
57+
operator: Exists---
58+
# Source: ingress-azure/templates/cleanup-job.yaml
59+
apiVersion: batch/v1
60+
kind: Job
61+
metadata:
62+
name: release-name-ingress-azure-cleanup
63+
labels:
64+
app: ingress-azure-cleanup
65+
chart: ingress-azure-1.9.3
66+
heritage: Helm
67+
release: release-name
68+
annotations:
69+
"helm.sh/hook": pre-delete
70+
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
71+
spec:
72+
template:
73+
spec:
74+
serviceAccountName: release-name-sa-ingress-azure
75+
restartPolicy: OnFailure
76+
containers:
77+
- name: cleanup
78+
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.9.3
79+
imagePullPolicy: Always
80+
env:
81+
- name: AGIC_POD_NAMESPACE
82+
valueFrom:
83+
fieldRef:
84+
fieldPath: metadata.namespace
85+
command:
86+
- "/appgw-ingress"
87+
- "--cleanup-oec"
88+
- "app.kubernetes.io/managed-by=ingress-appgw-addon"
89+
securityContext:
90+
capabilities:
91+
drop:
92+
- ALL
93+
nodeSelector:
94+
beta.kubernetes.io/os: linux
95+
affinity:
96+
nodeAffinity:
97+
preferredDuringSchedulingIgnoredDuringExecution:
98+
- preference:
99+
matchExpressions:
100+
- key: kubernetes.cloud.com/mode
101+
operator: In
102+
values:
103+
- system
104+
weight: 100
105+
requiredDuringSchedulingIgnoredDuringExecution:
106+
nodeSelectorTerms:
107+
- labelSelector: null
108+
matchExpressions:
109+
- key: kubernetes.cloud.com/cluster
110+
operator: Exists
55111
tolerations:
56112
- key: CriticalAppsOnly
57113
operator: Exists

helm/ingress-azure/tests/snapshots/sample-config-addon/ingress-azure/templates/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: release-name-cm-ingress-azure
77
labels:
88
app: ingress-azure
9-
chart: ingress-azure-1.6.0
9+
chart: ingress-azure-1.9.3
1010
heritage: Helm
1111
release: release-name
1212
data:

helm/ingress-azure/tests/snapshots/sample-config-addon/ingress-azure/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: release-name-ingress-azure
77
labels:
88
app: ingress-azure
9-
chart: ingress-azure-1.6.0
9+
chart: ingress-azure-1.9.3
1010
heritage: Helm
1111
release: release-name
1212
spec:
@@ -32,7 +32,7 @@ spec:
3232
runAsUser: 3000
3333
containers:
3434
- name: ingress-azure
35-
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.6.0
35+
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.9.3
3636
imagePullPolicy: Always
3737
readinessProbe:
3838
httpGet:

helm/ingress-azure/tests/snapshots/sample-config-addon/ingress-azure/templates/serviceaccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: ServiceAccount
55
metadata:
66
labels:
77
app: ingress-azure
8-
chart: ingress-azure-1.6.0
8+
chart: ingress-azure-1.9.3
99
heritage: Helm
1010
release: release-name
1111
name: release-name-sa-ingress-azure

helm/ingress-azure/tests/snapshots/sample-config-empty/ingress-azure/templates/cleanup-job.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,41 @@ spec:
2222
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.6.0
2323
imagePullPolicy: Always
2424
env:
25+
- name: AGIC_POD_NAMESPACE
26+
valueFrom:
27+
fieldRef:
28+
fieldPath: metadata.namespace
29+
command:
30+
- "/appgw-ingress"
31+
- "--cleanup-oec"
32+
- "app.kubernetes.io/managed-by=ingress-appgw-helm"
33+
securityContext:
34+
capabilities:
35+
drop:
36+
- ALL---
37+
# Source: ingress-azure/templates/cleanup-job.yaml
38+
apiVersion: batch/v1
39+
kind: Job
40+
metadata:
41+
name: release-name-ingress-azure-cleanup
42+
labels:
43+
app: ingress-azure-cleanup
44+
chart: ingress-azure-1.9.3
45+
heritage: Helm
46+
release: release-name
47+
annotations:
48+
"helm.sh/hook": pre-delete
49+
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
50+
spec:
51+
template:
52+
spec:
53+
serviceAccountName: release-name-sa-ingress-azure
54+
restartPolicy: OnFailure
55+
containers:
56+
- name: cleanup
57+
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.9.3
58+
imagePullPolicy: Always
59+
env:
2560
- name: AGIC_POD_NAMESPACE
2661
valueFrom:
2762
fieldRef:

helm/ingress-azure/tests/snapshots/sample-config-empty/ingress-azure/templates/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: release-name-cm-ingress-azure
77
labels:
88
app: ingress-azure
9-
chart: ingress-azure-1.6.0
9+
chart: ingress-azure-1.9.3
1010
heritage: Helm
1111
release: release-name
1212
data:

helm/ingress-azure/tests/snapshots/sample-config-empty/ingress-azure/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: release-name-ingress-azure
77
labels:
88
app: ingress-azure
9-
chart: ingress-azure-1.6.0
9+
chart: ingress-azure-1.9.3
1010
heritage: Helm
1111
release: release-name
1212
spec:
@@ -30,7 +30,7 @@ spec:
3030
runAsUser: 0
3131
containers:
3232
- name: ingress-azure
33-
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.6.0
33+
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.9.3
3434
imagePullPolicy: Always
3535
readinessProbe:
3636
httpGet:

helm/ingress-azure/tests/snapshots/sample-config-empty/ingress-azure/templates/serviceaccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: ServiceAccount
55
metadata:
66
labels:
77
app: ingress-azure
8-
chart: ingress-azure-1.6.0
8+
chart: ingress-azure-1.9.3
99
heritage: Helm
1010
release: release-name
1111
name: release-name-sa-ingress-azure

helm/ingress-azure/tests/snapshots/sample-config-existing-secret/ingress-azure/templates/cleanup-job.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,41 @@ spec:
2222
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.6.0
2323
imagePullPolicy: Always
2424
env:
25+
- name: AGIC_POD_NAMESPACE
26+
valueFrom:
27+
fieldRef:
28+
fieldPath: metadata.namespace
29+
command:
30+
- "/appgw-ingress"
31+
- "--cleanup-oec"
32+
- "app.kubernetes.io/managed-by=ingress-appgw-helm"
33+
securityContext:
34+
capabilities:
35+
drop:
36+
- ALL---
37+
# Source: ingress-azure/templates/cleanup-job.yaml
38+
apiVersion: batch/v1
39+
kind: Job
40+
metadata:
41+
name: release-name-ingress-azure-cleanup
42+
labels:
43+
app: ingress-azure-cleanup
44+
chart: ingress-azure-1.9.3
45+
heritage: Helm
46+
release: release-name
47+
annotations:
48+
"helm.sh/hook": pre-delete
49+
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
50+
spec:
51+
template:
52+
spec:
53+
serviceAccountName: release-name-sa-ingress-azure
54+
restartPolicy: OnFailure
55+
containers:
56+
- name: cleanup
57+
image: mcr.microsoft.com/azure-application-gateway/kubernetes-ingress:1.9.3
58+
imagePullPolicy: Always
59+
env:
2560
- name: AGIC_POD_NAMESPACE
2661
valueFrom:
2762
fieldRef:

0 commit comments

Comments
 (0)