Skip to content

Commit

Permalink
Csi v2.6.3 release (#106)
Browse files Browse the repository at this point in the history
* changed the CSI version to 2.6.3 (#99)

* fix testing chart

* update sidecar container images (#102)

* update version in charts.yaml

* update maxUnavailable rollout strategy to 10%

* remove limit and set request

---------

Co-authored-by: aniruddhg-nx <[email protected]>
Co-authored-by: Aniruddh Gupta <[email protected]>
  • Loading branch information
3 people authored May 11, 2023
1 parent 8e500e1 commit b9ebb51
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 27 deletions.
4 changes: 2 additions & 2 deletions charts/nutanix-csi-snapshot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
type: application
version: 6.0.2
version: 6.2.1
kubeVersion: ">= 1.17.0-0"
appVersion: "6.0.2"
appVersion: "6.2.1"
name: nutanix-csi-snapshot
description: Snapshot components required for CSI snapshotting and not specific to any CSI driver
home: https://github.com/nutanix/helm
Expand Down
2 changes: 1 addition & 1 deletion charts/nutanix-csi-snapshot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ imagePullPolicy: IfNotPresent

tag:
rel3: v3.0.3
rel60: v6.0.1
rel60: v6.2.1

controller:
replicas: 2
Expand Down
6 changes: 3 additions & 3 deletions charts/nutanix-csi-storage/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apiVersion: v1
name: nutanix-csi-storage
version: 2.6.2
version: 2.6.3
kubeVersion: ">= 1.17.0-0"
description: Nutanix Container Storage Interface (CSI) Driver
home: https://github.com/nutanix/helm
maintainers:
- name: nutanix-cloud-native-bot
email: [email protected]
icon: https://avatars2.githubusercontent.com/u/6165865?s=200&v=4
appVersion: "2.6.1"
appVersion: "2.6.3"
keywords:
- Nutanix
- Storage
Expand All @@ -23,7 +23,7 @@ annotations:
artifacthub.io/displayName: "Nutanix CSI Storage"
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/changes: |
- Update Nutanix CSI driver to v2.6.1
- Update Nutanix CSI driver to v2.6.3
- Update CSI Sidecar version
artifacthub.io/links: |
- name: Nutanix CSI Driver documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ spec:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
resources:
limits:
cpu: 100m
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
Expand All @@ -79,6 +76,10 @@ spec:
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
resources:
requests:
cpu: 5m
memory: 30Mi
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
Expand All @@ -97,6 +98,10 @@ spec:
env:
- name: ADDRESS
value: /csi/csi.sock
resources:
requests:
cpu: 5m
memory: 30Mi
volumeMounts:
- name: socket-dir
mountPath: /csi
Expand All @@ -118,9 +123,6 @@ spec:
fieldRef:
fieldPath: spec.nodeName
resources:
limits:
cpu: 100m
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
Expand All @@ -143,6 +145,10 @@ spec:
periodSeconds: 2
failureThreshold: 3
- name: liveness-probe
resources:
requests:
cpu: 5m
memory: 20Mi
volumeMounts:
- mountPath: /csi
name: socket-dir
Expand Down
14 changes: 6 additions & 8 deletions charts/nutanix-csi-storage/templates/ntnx-csi-node-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
updateStrategy:
type: "RollingUpdate"
rollingUpdate:
maxUnavailable: 1
maxUnavailable: 10%
template:
metadata:
labels:
Expand All @@ -40,12 +40,9 @@ spec:
fieldRef:
fieldPath: spec.nodeName
resources:
limits:
cpu: 100m
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
memory: 20Mi
volumeMounts:
- name: plugin-dir
mountPath: /csi/
Expand Down Expand Up @@ -73,9 +70,6 @@ spec:
fieldRef:
fieldPath: status.hostIP
resources:
limits:
cpu: 100m
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
Expand Down Expand Up @@ -108,6 +102,10 @@ spec:
periodSeconds: 2
failureThreshold: 3
- name: liveness-probe
resources:
requests:
cpu: 5m
memory: 20Mi
volumeMounts:
- mountPath: /csi
name: plugin-dir
Expand Down
14 changes: 7 additions & 7 deletions charts/nutanix-csi-storage/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,28 +121,28 @@ servicemonitor:

controller:
replicas: 2
image: quay.io/karbon/ntnx-csi:v2.6.1
image: quay.io/karbon/ntnx-csi:v2.6.3
nodeSelector: {}
tolerations: []

node:
image: quay.io/karbon/ntnx-csi:v2.6.1
image: quay.io/karbon/ntnx-csi:v2.6.3
nodeSelector: {}
tolerations: []

sidecars:
registrar:
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.6.0
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
provisioner:
image: registry.k8s.io/sig-storage/csi-provisioner:v3.3.0
image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
imageLegacy: registry.k8s.io/sig-storage/csi-provisioner:v2.2.2
snapshotter:
image: registry.k8s.io/sig-storage/csi-snapshotter:v6.1.0
image: registry.k8s.io/sig-storage/csi-snapshotter:v6.2.1
imageBeta: registry.k8s.io/sig-storage/csi-snapshotter:v3.0.3
resizer:
image: registry.k8s.io/sig-storage/csi-resizer:v1.6.0
image: registry.k8s.io/sig-storage/csi-resizer:v1.8.0
livenessprobe:
image: registry.k8s.io/sig-storage/livenessprobe:v2.8.0
image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0

# Used for deployment test in kind cluster
#
Expand Down

0 comments on commit b9ebb51

Please sign in to comment.