Skip to content

Commit fc47fec

Browse files
authored
CHANGELOG, chart, and manifest updates for VPC CNI v1.15.0 release (#2563)
1 parent 2965ddf commit fc47fec

16 files changed

+79
-65
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
# Changelog
22

3+
## v1.15.0
4+
5+
* Feature - [Add support for VPC Resource Controller's CNINode (reintroduce #2442)](https://github.com/aws/amazon-vpc-cni-k8s/pull/2503) (@haouc )
6+
* Feature - [Add DISABLE_CONTAINER_V6 to disable IPv6 networking in container network namespaces](https://github.com/aws/amazon-vpc-cni-k8s/pull/2499) (@jdn5126 )
7+
* Feature - [IP_COOLDOWN_PERIOD environment variable for ip cooldown period configuration](https://github.com/aws/amazon-vpc-cni-k8s/pull/2492) (@jchen6585 )
8+
* Improvement - [Fix test kubeconfig, upgrade helm](https://github.com/aws/amazon-vpc-cni-k8s/pull/2509) (@jdn5126 )
9+
* Improvement - [Update instance limits for upcoming vpc-cni release](https://github.com/aws/amazon-vpc-cni-k8s/pull/2506) (@jchen6585 )
10+
* Improvement - [Upgrade controller-runtime to v0.15.0](https://github.com/aws/amazon-vpc-cni-k8s/pull/2481) (@jdn5126 )
11+
12+
## v1.14.1
13+
14+
* Improvement - [Update aws-eks-nodeagent image version to v1.0.2](https://github.com/aws/aws-network-policy-agent/pull/51) (@jayanthvn)
15+
316
## v1.14.0
417

5-
* Feature - Starting Amazon VPC CNI v1.14, there will be 2 containers in the aws-node pods for supporting Kubernetes Network Policy.
18+
* Feature - `v1.14.0` introduces Kubernetes Network Policy support. This is accomplished via the `aws-eks-nodeagent` container, which is now present in the `aws-node` pod.
619

720
## v1.13.4
821

charts/aws-vpc-cni/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: aws-vpc-cni
3-
version: 1.14.0
4-
appVersion: "v1.14.0"
3+
version: 1.15.0
4+
appVersion: "v1.15.0"
55
description: A Helm chart for the AWS VPC CNI
66
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
77
home: https://github.com/aws/amazon-vpc-cni-k8s

charts/aws-vpc-cni/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ The following table lists the configurable parameters for this chart and their d
4343
| `enableWindowsIpam` | Enable windows support for your cluster | `false` |
4444
| `enableNetworkPolicy` | Enable Network Policy Controller and Agent for your cluster | `false` |
4545
| `fullnameOverride` | Override the fullname of the chart | `aws-node` |
46-
| `image.tag` | Image tag | `v1.14.0` |
46+
| `image.tag` | Image tag | `v1.15.0` |
4747
| `image.domain` | ECR repository domain | `amazonaws.com` |
4848
| `image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
4949
| `image.endpoint` | ECR repository endpoint to use. | `ecr` |
5050
| `image.account` | ECR repository account number | `602401143452` |
5151
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
5252
| `image.override` | A custom docker image to use | `nil` |
5353
| `imagePullSecrets` | Docker registry pull secret | `[]` |
54-
| `init.image.tag` | Image tag | `v1.14.0` |
54+
| `init.image.tag` | Image tag | `v1.15.0` |
5555
| `init.image.domain` | ECR repository domain | `amazonaws.com` |
5656
| `init.image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
5757
| `init.image.endpoint` | ECR repository endpoint to use. | `ecr` |
@@ -62,7 +62,7 @@ The following table lists the configurable parameters for this chart and their d
6262
| `init.securityContext` | Init container Security context | `privileged: true` |
6363
| `originalMatchLabels` | Use the original daemonset matchLabels | `false` |
6464
| `nameOverride` | Override the name of the chart | `aws-node` |
65-
| `nodeAgent.image.tag` | Image tag for Node Agent | `v1.0.1` |
65+
| `nodeAgent.image.tag` | Image tag for Node Agent | `v1.0.2` |
6666
| `nodeAgent.image.domain`| ECR repository domain | `amazonaws.com` |
6767
| `nodeAgent.image.region`| ECR repository region to use. Should match your cluster | `us-west-2` |
6868
| `nodeAgent.image.endpoint` | ECR repository endpoint to use. | `ecr` |

charts/aws-vpc-cni/templates/clusterrole.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rules:
2828
- apiGroups: [""]
2929
resources:
3030
- nodes
31-
verbs: ["list", "watch", "get", "update"]
31+
verbs: ["list", "watch", "get"]
3232
- apiGroups: ["", "events.k8s.io"]
3333
resources:
3434
- events

charts/aws-vpc-cni/templates/daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ spec:
144144
- mountPath: /var/run/aws-node
145145
name: run-dir
146146
volumes:
147-
- name: bpf-pin-path
147+
- name: bpf-pin-path
148148
hostPath:
149149
path: /sys/fs/bpf
150150
- name: cni-bin-dir

charts/aws-vpc-cni/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ nameOverride: aws-node
66

77
init:
88
image:
9-
tag: v1.14.0
9+
tag: v1.15.0
1010
region: us-west-2
1111
pullPolicy: Always
1212
# Set to use custom image
@@ -18,7 +18,7 @@ init:
1818

1919
nodeAgent:
2020
image:
21-
tag: v1.0.1
21+
tag: v1.0.2
2222
region: us-west-2
2323
pullPolicy: Always
2424
# Set to use custom image
@@ -33,7 +33,7 @@ nodeAgent:
3333

3434
image:
3535
region: us-west-2
36-
tag: v1.14.0
36+
tag: v1.15.0
3737
pullPolicy: Always
3838
# Set to use custom image
3939
# override: "repo/org/image:tag"

charts/aws-vpc-cni/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ nameOverride: aws-node
88

99
init:
1010
image:
11-
tag: v1.14.0
11+
tag: v1.15.0
1212
domain: amazonaws.com
1313
region: us-west-2
1414
endpoint: ecr
@@ -25,7 +25,7 @@ init:
2525

2626
nodeAgent:
2727
image:
28-
tag: v1.0.1
28+
tag: v1.0.2
2929
domain: amazonaws.com
3030
region: us-west-2
3131
endpoint: ecr
@@ -45,7 +45,7 @@ nodeAgent:
4545
healthProbeBindAddr: "8163"
4646

4747
image:
48-
tag: v1.14.0
48+
tag: v1.15.0
4949
domain: amazonaws.com
5050
region: us-west-2
5151
endpoint: ecr

config/master/aws-k8s-cni-cn.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ metadata:
266266
app.kubernetes.io/name: aws-node
267267
app.kubernetes.io/instance: aws-vpc-cni
268268
k8s-app: aws-node
269-
app.kubernetes.io/version: "v1.14.0"
269+
app.kubernetes.io/version: "v1.15.0"
270270
---
271271
# Source: aws-vpc-cni/templates/configmap.yaml
272272
apiVersion: v1
@@ -278,7 +278,7 @@ metadata:
278278
app.kubernetes.io/name: aws-node
279279
app.kubernetes.io/instance: aws-vpc-cni
280280
k8s-app: aws-node
281-
app.kubernetes.io/version: "v1.14.0"
281+
app.kubernetes.io/version: "v1.15.0"
282282
data:
283283
enable-windows-ipam: "false"
284284
enable-network-policy-controller: "false"
@@ -292,7 +292,7 @@ metadata:
292292
app.kubernetes.io/name: aws-node
293293
app.kubernetes.io/instance: aws-vpc-cni
294294
k8s-app: aws-node
295-
app.kubernetes.io/version: "v1.14.0"
295+
app.kubernetes.io/version: "v1.15.0"
296296
rules:
297297
- apiGroups:
298298
- crd.k8s.amazonaws.com
@@ -310,7 +310,7 @@ rules:
310310
- apiGroups: [""]
311311
resources:
312312
- nodes
313-
verbs: ["list", "watch", "get", "update"]
313+
verbs: ["list", "watch", "get"]
314314
- apiGroups: ["", "events.k8s.io"]
315315
resources:
316316
- events
@@ -338,7 +338,7 @@ metadata:
338338
app.kubernetes.io/name: aws-node
339339
app.kubernetes.io/instance: aws-vpc-cni
340340
k8s-app: aws-node
341-
app.kubernetes.io/version: "v1.14.0"
341+
app.kubernetes.io/version: "v1.15.0"
342342
roleRef:
343343
apiGroup: rbac.authorization.k8s.io
344344
kind: ClusterRole
@@ -358,7 +358,7 @@ metadata:
358358
app.kubernetes.io/name: aws-node
359359
app.kubernetes.io/instance: aws-vpc-cni
360360
k8s-app: aws-node
361-
app.kubernetes.io/version: "v1.14.0"
361+
app.kubernetes.io/version: "v1.15.0"
362362
spec:
363363
updateStrategy:
364364
rollingUpdate:
@@ -379,7 +379,7 @@ spec:
379379
hostNetwork: true
380380
initContainers:
381381
- name: aws-vpc-cni-init
382-
image: "961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni-init:v1.14.0"
382+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni-init:v1.15.0
383383
env:
384384
- name: DISABLE_TCP_EARLY_DEMUX
385385
value: "false"
@@ -400,7 +400,7 @@ spec:
400400
{}
401401
containers:
402402
- name: aws-node
403-
image: "961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni:v1.14.0"
403+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni:v1.15.0
404404
ports:
405405
- containerPort: 61678
406406
name: metrics
@@ -493,7 +493,7 @@ spec:
493493
- mountPath: /run/xtables.lock
494494
name: xtables-lock
495495
- name: aws-eks-nodeagent
496-
image: "961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon/aws-network-policy-agent:v1.0.1"
496+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon/aws-network-policy-agent:v1.0.2
497497
env:
498498
- name: MY_NODE_NAME
499499
valueFrom:

config/master/aws-k8s-cni-us-gov-east-1.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ metadata:
266266
app.kubernetes.io/name: aws-node
267267
app.kubernetes.io/instance: aws-vpc-cni
268268
k8s-app: aws-node
269-
app.kubernetes.io/version: "v1.14.0"
269+
app.kubernetes.io/version: "v1.15.0"
270270
---
271271
# Source: aws-vpc-cni/templates/configmap.yaml
272272
apiVersion: v1
@@ -278,9 +278,9 @@ metadata:
278278
app.kubernetes.io/name: aws-node
279279
app.kubernetes.io/instance: aws-vpc-cni
280280
k8s-app: aws-node
281-
app.kubernetes.io/version: "v1.14.0"
281+
app.kubernetes.io/version: "v1.15.0"
282282
data:
283-
enable-windows-ipam: "false"
283+
enable-windows-ipam: "false"
284284
enable-network-policy-controller: "false"
285285
---
286286
# Source: aws-vpc-cni/templates/clusterrole.yaml
@@ -292,7 +292,7 @@ metadata:
292292
app.kubernetes.io/name: aws-node
293293
app.kubernetes.io/instance: aws-vpc-cni
294294
k8s-app: aws-node
295-
app.kubernetes.io/version: "v1.14.0"
295+
app.kubernetes.io/version: "v1.15.0"
296296
rules:
297297
- apiGroups:
298298
- crd.k8s.amazonaws.com
@@ -310,7 +310,7 @@ rules:
310310
- apiGroups: [""]
311311
resources:
312312
- nodes
313-
verbs: ["list", "watch", "get", "update"]
313+
verbs: ["list", "watch", "get"]
314314
- apiGroups: ["", "events.k8s.io"]
315315
resources:
316316
- events
@@ -338,7 +338,7 @@ metadata:
338338
app.kubernetes.io/name: aws-node
339339
app.kubernetes.io/instance: aws-vpc-cni
340340
k8s-app: aws-node
341-
app.kubernetes.io/version: "v1.14.0"
341+
app.kubernetes.io/version: "v1.15.0"
342342
roleRef:
343343
apiGroup: rbac.authorization.k8s.io
344344
kind: ClusterRole
@@ -358,7 +358,7 @@ metadata:
358358
app.kubernetes.io/name: aws-node
359359
app.kubernetes.io/instance: aws-vpc-cni
360360
k8s-app: aws-node
361-
app.kubernetes.io/version: "v1.14.0"
361+
app.kubernetes.io/version: "v1.15.0"
362362
spec:
363363
updateStrategy:
364364
rollingUpdate:
@@ -379,7 +379,7 @@ spec:
379379
hostNetwork: true
380380
initContainers:
381381
- name: aws-vpc-cni-init
382-
image: "151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni-init:v1.14.0"
382+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni-init:v1.15.0
383383
env:
384384
- name: DISABLE_TCP_EARLY_DEMUX
385385
value: "false"
@@ -400,7 +400,7 @@ spec:
400400
{}
401401
containers:
402402
- name: aws-node
403-
image: "151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni:v1.14.0"
403+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni:v1.15.0
404404
ports:
405405
- containerPort: 61678
406406
name: metrics
@@ -493,7 +493,7 @@ spec:
493493
- mountPath: /run/xtables.lock
494494
name: xtables-lock
495495
- name: aws-eks-nodeagent
496-
image: "151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon/aws-network-policy-agent:v1.0.1"
496+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon/aws-network-policy-agent:v1.0.2
497497
env:
498498
- name: MY_NODE_NAME
499499
valueFrom:
@@ -524,7 +524,7 @@ spec:
524524
- mountPath: /var/run/aws-node
525525
name: run-dir
526526
volumes:
527-
- name: bpf-pin-path
527+
- name: bpf-pin-path
528528
hostPath:
529529
path: /sys/fs/bpf
530530
- name: cni-bin-dir

config/master/aws-k8s-cni-us-gov-west-1.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ metadata:
266266
app.kubernetes.io/name: aws-node
267267
app.kubernetes.io/instance: aws-vpc-cni
268268
k8s-app: aws-node
269-
app.kubernetes.io/version: "v1.14.0"
269+
app.kubernetes.io/version: "v1.15.0"
270270
---
271271
# Source: aws-vpc-cni/templates/configmap.yaml
272272
apiVersion: v1
@@ -278,7 +278,7 @@ metadata:
278278
app.kubernetes.io/name: aws-node
279279
app.kubernetes.io/instance: aws-vpc-cni
280280
k8s-app: aws-node
281-
app.kubernetes.io/version: "v1.14.0"
281+
app.kubernetes.io/version: "v1.15.0"
282282
data:
283283
enable-windows-ipam: "false"
284284
enable-network-policy-controller: "false"
@@ -292,7 +292,7 @@ metadata:
292292
app.kubernetes.io/name: aws-node
293293
app.kubernetes.io/instance: aws-vpc-cni
294294
k8s-app: aws-node
295-
app.kubernetes.io/version: "v1.14.0"
295+
app.kubernetes.io/version: "v1.15.0"
296296
rules:
297297
- apiGroups:
298298
- crd.k8s.amazonaws.com
@@ -310,7 +310,7 @@ rules:
310310
- apiGroups: [""]
311311
resources:
312312
- nodes
313-
verbs: ["list", "watch", "get", "update"]
313+
verbs: ["list", "watch", "get"]
314314
- apiGroups: ["", "events.k8s.io"]
315315
resources:
316316
- events
@@ -338,7 +338,7 @@ metadata:
338338
app.kubernetes.io/name: aws-node
339339
app.kubernetes.io/instance: aws-vpc-cni
340340
k8s-app: aws-node
341-
app.kubernetes.io/version: "v1.14.0"
341+
app.kubernetes.io/version: "v1.15.0"
342342
roleRef:
343343
apiGroup: rbac.authorization.k8s.io
344344
kind: ClusterRole
@@ -358,7 +358,7 @@ metadata:
358358
app.kubernetes.io/name: aws-node
359359
app.kubernetes.io/instance: aws-vpc-cni
360360
k8s-app: aws-node
361-
app.kubernetes.io/version: "v1.14.0"
361+
app.kubernetes.io/version: "v1.15.0"
362362
spec:
363363
updateStrategy:
364364
rollingUpdate:
@@ -379,7 +379,7 @@ spec:
379379
hostNetwork: true
380380
initContainers:
381381
- name: aws-vpc-cni-init
382-
image: "013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni-init:v1.14.0"
382+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni-init:v1.15.0
383383
env:
384384
- name: DISABLE_TCP_EARLY_DEMUX
385385
value: "false"
@@ -400,7 +400,7 @@ spec:
400400
{}
401401
containers:
402402
- name: aws-node
403-
image: "013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni:v1.14.0"
403+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni:v1.15.0
404404
ports:
405405
- containerPort: 61678
406406
name: metrics
@@ -493,7 +493,7 @@ spec:
493493
- mountPath: /run/xtables.lock
494494
name: xtables-lock
495495
- name: aws-eks-nodeagent
496-
image: "013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon/aws-network-policy-agent:v1.0.1"
496+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon/aws-network-policy-agent:v1.0.2
497497
env:
498498
- name: MY_NODE_NAME
499499
valueFrom:
@@ -524,7 +524,7 @@ spec:
524524
- mountPath: /var/run/aws-node
525525
name: run-dir
526526
volumes:
527-
- name: bpf-pin-path
527+
- name: bpf-pin-path
528528
hostPath:
529529
path: /sys/fs/bpf
530530
- name: cni-bin-dir

0 commit comments

Comments
 (0)