Skip to content

Commit b00539f

Browse files
orsenthiljaydeokar
authored andcommitted
Update to Changelog, config and scripts. (aws#3095)
* Update to Changelog, config and scripts. * Add Version in Changelog.
1 parent 5e3efc2 commit b00539f

17 files changed

+92
-74
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## v1.18.5
44

5+
### What's Changed
6+
7+
* Improvement - Add byobject filter on nodes #2888
8+
* Improvement - Move KUBE_CONFIG_PATH variable to KUBECONFIG variable #3015
9+
* Improvement - Update Limits and Add New Instance Types. #3077
10+
11+
* Dependency - Bump google.golang.org/grpc from 1.62.0 to 1.67.1 #3056
12+
* Dependency - Bump github.com/prometheus/common from 0.53.0 to 0.60.0 #3057
13+
* Dependency - Bump golang.org/x/sys from 0.24.0 to 0.25.0 in /test/agent #3052
14+
* Dependency - update upstream cni to 1.5.1 #3065
15+
* Dependency - Bump k8s.io/client-go from 0.30.3 to 0.31.1 #3036
16+
* Dependency - Bump github.com/vishvananda/netlink from 1.2.1-beta.2 to 1.3.0 #3054
17+
* Docs - Document the limitation of SGP with kube-proxy IPVS mode. #3064
18+
* Bugfix - https://github.com/aws/amazon-vpc-cni-k8s/pull/3088
19+
* Bugfix - Fix the SCRIPT_DIR reference in integration tests. #3090
20+
21+
## v1.18.5
22+
523
## What's Changed
624

725
* Improvement - Filter out interfaces with no ip info by @Pavani-Panakanti in https://github.com/aws/amazon-vpc-cni-k8s/pull/3047

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.18.5
4-
appVersion: "v1.18.5"
3+
version: 1.18.6
4+
appVersion: "v1.18.6"
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
@@ -48,15 +48,15 @@ The following table lists the configurable parameters for this chart and their d
4848
| `minimumWindowsIPTarget`| Minimum IP target value for Windows prefix delegation | `3` |
4949
| `branchENICooldown` | Number of seconds that branch ENIs remain in cooldown | `60` |
5050
| `fullnameOverride` | Override the fullname of the chart | `aws-node` |
51-
| `image.tag` | Image tag | `v1.18.5` |
51+
| `image.tag` | Image tag | `v1.18.6` |
5252
| `image.domain` | ECR repository domain | `amazonaws.com` |
5353
| `image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
5454
| `image.endpoint` | ECR repository endpoint to use. | `ecr` |
5555
| `image.account` | ECR repository account number | `602401143452` |
5656
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
5757
| `image.override` | A custom docker image to use | `nil` |
5858
| `imagePullSecrets` | Docker registry pull secret | `[]` |
59-
| `init.image.tag` | Image tag | `v1.18.5` |
59+
| `init.image.tag` | Image tag | `v1.18.6` |
6060
| `init.image.domain` | ECR repository domain | `amazonaws.com` |
6161
| `init.image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
6262
| `init.image.endpoint` | ECR repository endpoint to use. | `ecr` |
@@ -69,7 +69,7 @@ The following table lists the configurable parameters for this chart and their d
6969
| `originalMatchLabels` | Use the original daemonset matchLabels | `false` |
7070
| `nameOverride` | Override the name of the chart | `aws-node` |
7171
| `nodeAgent.enabled` | If the Node Agent container should be created | `true` |
72-
| `nodeAgent.image.tag` | Image tag for Node Agent | `v1.1.3` |
72+
| `nodeAgent.image.tag` | Image tag for Node Agent | `v1.1.4` |
7373
| `nodeAgent.image.domain`| ECR repository domain | `amazonaws.com` |
7474
| `nodeAgent.image.region`| ECR repository region to use. Should match your cluster | `us-west-2` |
7575
| `nodeAgent.image.endpoint` | ECR repository endpoint to use. | `ecr` |

charts/aws-vpc-cni/values.yaml

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

99
init:
1010
image:
11-
tag: v1.18.5
11+
tag: v1.18.6
1212
domain: amazonaws.com
1313
region: us-west-2
1414
endpoint: ecr
@@ -27,7 +27,7 @@ init:
2727
nodeAgent:
2828
enabled: true
2929
image:
30-
tag: v1.1.3
30+
tag: v1.1.4
3131
domain: amazonaws.com
3232
region: us-west-2
3333
endpoint: ecr
@@ -51,7 +51,7 @@ nodeAgent:
5151
resources: {}
5252

5353
image:
54-
tag: v1.18.5
54+
tag: v1.18.6
5555
domain: amazonaws.com
5656
region: us-west-2
5757
endpoint: ecr
@@ -85,7 +85,7 @@ env:
8585
ENABLE_IPv4: "true"
8686
ENABLE_IPv6: "false"
8787
ENABLE_SUBNET_DISCOVERY: "true"
88-
VPC_CNI_VERSION: "v1.18.5"
88+
VPC_CNI_VERSION: "v1.18.6"
8989
NETWORK_POLICY_ENFORCING_MODE: "standard"
9090

9191
# Add env from configMap or from secrets

charts/cni-metrics-helper/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: cni-metrics-helper
3-
version: 1.18.5
4-
appVersion: v1.18.5
3+
version: 1.18.6
4+
appVersion: v1.18.6
55
description: A Helm chart for the AWS VPC CNI Metrics Helper
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/cni-metrics-helper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following table lists the configurable parameters for this chart and their d
6060
| -------------------------------|---------------------------------------------------------------|-------------------------------------|
6161
| `affinity` | Map of node/pod affinities | `{}` |
6262
| `fullnameOverride` | Override the fullname of the chart | `cni-metrics-helper` |
63-
| `image.tag` | Image tag | `v1.18.5` |
63+
| `image.tag` | Image tag | `v1.18.6` |
6464
| `image.domain` | ECR repository domain | `amazonaws.com` |
6565
| `image.region` | ECR repository region to use. Should match your cluster | `us-west-2` |
6666
| `image.account` | ECR repository account number | `602401143452` |

charts/cni-metrics-helper/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ nameOverride: cni-metrics-helper
44

55
image:
66
region: us-west-2
7-
tag: v1.18.5
7+
tag: v1.18.6
88
account: "602401143452"
99
domain: "amazonaws.com"
1010
# Set to use custom image

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ metadata:
300300
app.kubernetes.io/name: aws-node
301301
app.kubernetes.io/instance: aws-vpc-cni
302302
k8s-app: aws-node
303-
app.kubernetes.io/version: "v1.18.5"
303+
app.kubernetes.io/version: "v1.18.6"
304304
---
305305
# Source: aws-vpc-cni/templates/configmap.yaml
306306
apiVersion: v1
@@ -312,7 +312,7 @@ metadata:
312312
app.kubernetes.io/name: aws-node
313313
app.kubernetes.io/instance: aws-vpc-cni
314314
k8s-app: aws-node
315-
app.kubernetes.io/version: "v1.18.5"
315+
app.kubernetes.io/version: "v1.18.6"
316316
data:
317317
enable-windows-ipam: "false"
318318
enable-network-policy-controller: "false"
@@ -331,7 +331,7 @@ metadata:
331331
app.kubernetes.io/name: aws-node
332332
app.kubernetes.io/instance: aws-vpc-cni
333333
k8s-app: aws-node
334-
app.kubernetes.io/version: "v1.18.5"
334+
app.kubernetes.io/version: "v1.18.6"
335335
rules:
336336
- apiGroups:
337337
- crd.k8s.amazonaws.com
@@ -377,7 +377,7 @@ metadata:
377377
app.kubernetes.io/name: aws-node
378378
app.kubernetes.io/instance: aws-vpc-cni
379379
k8s-app: aws-node
380-
app.kubernetes.io/version: "v1.18.5"
380+
app.kubernetes.io/version: "v1.18.6"
381381
roleRef:
382382
apiGroup: rbac.authorization.k8s.io
383383
kind: ClusterRole
@@ -397,7 +397,7 @@ metadata:
397397
app.kubernetes.io/name: aws-node
398398
app.kubernetes.io/instance: aws-vpc-cni
399399
k8s-app: aws-node
400-
app.kubernetes.io/version: "v1.18.5"
400+
app.kubernetes.io/version: "v1.18.6"
401401
spec:
402402
updateStrategy:
403403
rollingUpdate:
@@ -418,7 +418,7 @@ spec:
418418
hostNetwork: true
419419
initContainers:
420420
- name: aws-vpc-cni-init
421-
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni-init:v1.18.5
421+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni-init:v1.18.6
422422
imagePullPolicy: Always
423423
env:
424424
- name: DISABLE_TCP_EARLY_DEMUX
@@ -440,7 +440,7 @@ spec:
440440
{}
441441
containers:
442442
- name: aws-node
443-
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni:v1.18.5
443+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon-k8s-cni:v1.18.6
444444
ports:
445445
- containerPort: 61678
446446
name: metrics
@@ -504,7 +504,7 @@ spec:
504504
- name: NETWORK_POLICY_ENFORCING_MODE
505505
value: "standard"
506506
- name: VPC_CNI_VERSION
507-
value: "v1.18.5"
507+
value: "v1.18.6"
508508
- name: WARM_ENI_TARGET
509509
value: "1"
510510
- name: WARM_PREFIX_TARGET
@@ -539,7 +539,7 @@ spec:
539539
- mountPath: /run/xtables.lock
540540
name: xtables-lock
541541
- name: aws-eks-nodeagent
542-
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon/aws-network-policy-agent:v1.1.3
542+
image: 961992271922.dkr.ecr.cn-northwest-1.amazonaws.com.cn/amazon/aws-network-policy-agent:v1.1.4
543543
imagePullPolicy: Always
544544
env:
545545
- name: MY_NODE_NAME

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ metadata:
300300
app.kubernetes.io/name: aws-node
301301
app.kubernetes.io/instance: aws-vpc-cni
302302
k8s-app: aws-node
303-
app.kubernetes.io/version: "v1.18.5"
303+
app.kubernetes.io/version: "v1.18.6"
304304
---
305305
# Source: aws-vpc-cni/templates/configmap.yaml
306306
apiVersion: v1
@@ -312,7 +312,7 @@ metadata:
312312
app.kubernetes.io/name: aws-node
313313
app.kubernetes.io/instance: aws-vpc-cni
314314
k8s-app: aws-node
315-
app.kubernetes.io/version: "v1.18.5"
315+
app.kubernetes.io/version: "v1.18.6"
316316
data:
317317
enable-windows-ipam: "false"
318318
enable-network-policy-controller: "false"
@@ -331,7 +331,7 @@ metadata:
331331
app.kubernetes.io/name: aws-node
332332
app.kubernetes.io/instance: aws-vpc-cni
333333
k8s-app: aws-node
334-
app.kubernetes.io/version: "v1.18.5"
334+
app.kubernetes.io/version: "v1.18.6"
335335
rules:
336336
- apiGroups:
337337
- crd.k8s.amazonaws.com
@@ -377,7 +377,7 @@ metadata:
377377
app.kubernetes.io/name: aws-node
378378
app.kubernetes.io/instance: aws-vpc-cni
379379
k8s-app: aws-node
380-
app.kubernetes.io/version: "v1.18.5"
380+
app.kubernetes.io/version: "v1.18.6"
381381
roleRef:
382382
apiGroup: rbac.authorization.k8s.io
383383
kind: ClusterRole
@@ -397,7 +397,7 @@ metadata:
397397
app.kubernetes.io/name: aws-node
398398
app.kubernetes.io/instance: aws-vpc-cni
399399
k8s-app: aws-node
400-
app.kubernetes.io/version: "v1.18.5"
400+
app.kubernetes.io/version: "v1.18.6"
401401
spec:
402402
updateStrategy:
403403
rollingUpdate:
@@ -418,7 +418,7 @@ spec:
418418
hostNetwork: true
419419
initContainers:
420420
- name: aws-vpc-cni-init
421-
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni-init:v1.18.5
421+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni-init:v1.18.6
422422
imagePullPolicy: Always
423423
env:
424424
- name: DISABLE_TCP_EARLY_DEMUX
@@ -440,7 +440,7 @@ spec:
440440
{}
441441
containers:
442442
- name: aws-node
443-
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni:v1.18.5
443+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon-k8s-cni:v1.18.6
444444
ports:
445445
- containerPort: 61678
446446
name: metrics
@@ -504,7 +504,7 @@ spec:
504504
- name: NETWORK_POLICY_ENFORCING_MODE
505505
value: "standard"
506506
- name: VPC_CNI_VERSION
507-
value: "v1.18.5"
507+
value: "v1.18.6"
508508
- name: WARM_ENI_TARGET
509509
value: "1"
510510
- name: WARM_PREFIX_TARGET
@@ -539,7 +539,7 @@ spec:
539539
- mountPath: /run/xtables.lock
540540
name: xtables-lock
541541
- name: aws-eks-nodeagent
542-
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon/aws-network-policy-agent:v1.1.3
542+
image: 151742754352.dkr.ecr.us-gov-east-1.amazonaws.com/amazon/aws-network-policy-agent:v1.1.4
543543
imagePullPolicy: Always
544544
env:
545545
- name: MY_NODE_NAME

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ metadata:
300300
app.kubernetes.io/name: aws-node
301301
app.kubernetes.io/instance: aws-vpc-cni
302302
k8s-app: aws-node
303-
app.kubernetes.io/version: "v1.18.5"
303+
app.kubernetes.io/version: "v1.18.6"
304304
---
305305
# Source: aws-vpc-cni/templates/configmap.yaml
306306
apiVersion: v1
@@ -312,7 +312,7 @@ metadata:
312312
app.kubernetes.io/name: aws-node
313313
app.kubernetes.io/instance: aws-vpc-cni
314314
k8s-app: aws-node
315-
app.kubernetes.io/version: "v1.18.5"
315+
app.kubernetes.io/version: "v1.18.6"
316316
data:
317317
enable-windows-ipam: "false"
318318
enable-network-policy-controller: "false"
@@ -331,7 +331,7 @@ metadata:
331331
app.kubernetes.io/name: aws-node
332332
app.kubernetes.io/instance: aws-vpc-cni
333333
k8s-app: aws-node
334-
app.kubernetes.io/version: "v1.18.5"
334+
app.kubernetes.io/version: "v1.18.6"
335335
rules:
336336
- apiGroups:
337337
- crd.k8s.amazonaws.com
@@ -377,7 +377,7 @@ metadata:
377377
app.kubernetes.io/name: aws-node
378378
app.kubernetes.io/instance: aws-vpc-cni
379379
k8s-app: aws-node
380-
app.kubernetes.io/version: "v1.18.5"
380+
app.kubernetes.io/version: "v1.18.6"
381381
roleRef:
382382
apiGroup: rbac.authorization.k8s.io
383383
kind: ClusterRole
@@ -397,7 +397,7 @@ metadata:
397397
app.kubernetes.io/name: aws-node
398398
app.kubernetes.io/instance: aws-vpc-cni
399399
k8s-app: aws-node
400-
app.kubernetes.io/version: "v1.18.5"
400+
app.kubernetes.io/version: "v1.18.6"
401401
spec:
402402
updateStrategy:
403403
rollingUpdate:
@@ -418,7 +418,7 @@ spec:
418418
hostNetwork: true
419419
initContainers:
420420
- name: aws-vpc-cni-init
421-
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni-init:v1.18.5
421+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni-init:v1.18.6
422422
imagePullPolicy: Always
423423
env:
424424
- name: DISABLE_TCP_EARLY_DEMUX
@@ -440,7 +440,7 @@ spec:
440440
{}
441441
containers:
442442
- name: aws-node
443-
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni:v1.18.5
443+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon-k8s-cni:v1.18.6
444444
ports:
445445
- containerPort: 61678
446446
name: metrics
@@ -504,7 +504,7 @@ spec:
504504
- name: NETWORK_POLICY_ENFORCING_MODE
505505
value: "standard"
506506
- name: VPC_CNI_VERSION
507-
value: "v1.18.5"
507+
value: "v1.18.6"
508508
- name: WARM_ENI_TARGET
509509
value: "1"
510510
- name: WARM_PREFIX_TARGET
@@ -539,7 +539,7 @@ spec:
539539
- mountPath: /run/xtables.lock
540540
name: xtables-lock
541541
- name: aws-eks-nodeagent
542-
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon/aws-network-policy-agent:v1.1.3
542+
image: 013241004608.dkr.ecr.us-gov-west-1.amazonaws.com/amazon/aws-network-policy-agent:v1.1.4
543543
imagePullPolicy: Always
544544
env:
545545
- name: MY_NODE_NAME

0 commit comments

Comments
 (0)