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

[charts/csi-unity] fix: add allowedNetworks parameter #402

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions charts/csi-unity/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
appVersion: 2.10.0
appVersion: 2.10.1
name: csi-unity
version: 2.10.0
version: 2.10.1
description: |
Unity XT CSI (Container Storage Interface) driver Kubernetes
integration. This chart includes everything required to provision via CSI as
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-unity/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ spec:
value: "true"
- name: X_CSI_UNITY_ALLOW_MULTI_POD_ACCESS
value: {{ .Values.allowRWOMultiPodAccess | default "false" | lower | quote }}
- name: X_CSI_ALLOWED_NETWORKS
value: "{{ .Values.allowedNetworks }}"
- name: X_CSI_PRIVATE_MOUNT_DIR
value: "{{ .Values.kubeletConfigDir }}/plugins/unity.emc.dell.com/disks"
- name: X_CSI_EPHEMERAL_STAGING_PATH
Expand Down
11 changes: 9 additions & 2 deletions charts/csi-unity/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# version: version of this values file
# Note: Do not change this value
# Examples : "v2.9.0" , "nightly"
version: "v2.10.0"
version: "v2.10.1"

images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-unity:v2.10.0
driver: dellemc/csi-unity:v2.10.1
# CSI sidecars
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.5.0
provisioner: registry.k8s.io/sig-storage/csi-provisioner:v4.0.0
Expand All @@ -31,6 +31,13 @@ logLevel: "info"
# Default value: None
certSecretCount: 1

# allowedNetworks: Custom networks for Unity export
# Specify list of networks which can be used for NFS I/O traffic; CIDR format should be used.
# Allowed values: list of one or more networks
# Default value: None
# Examples: [192.168.1.0/24, 192.168.100.0/22]
allowedNetworks: []

# imagePullPolicy: Policy to determine if the image should be pulled prior to starting the container.
# Allowed values:
# Always: Always pull the image.
Expand Down
Loading