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

Manifest updates #142

Merged
merged 2 commits into from
Mar 20, 2023
Merged
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
1 change: 1 addition & 0 deletions .github/containerscan/allowedlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ general:
- CVE-2022-21698
- CVE-2019-1010022
- CVE-2022-47629
- CVE-2023-0286
bestPracticeViolations:
# list of best practies violatied that needs a fix
- DKL-DI-0006
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,6 @@ metadata:
{
"name": "X_CSI_VCENTER_HOST",
"value": ""
},
{
"name": "X_CSI_VCENTER_USERNAME",
"value": ""
},
{
"name": "X_CSI_VCENTER_PWD",
"value": ""
}
],
"image": "dellemc/csi-powermax:v2.6.0",
Expand Down Expand Up @@ -246,7 +238,7 @@ metadata:
},
"mode": "Linked"
},
"image": "dellemc/csipowermax-reverseproxy:v2.4.0",
"image": "dellemc/csipowermax-reverseproxy:v2.5.0",
"imagePullPolicy": "IfNotPresent",
"tlsSecret": "csirevproxy-tls-secret"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,6 @@ metadata:
{
"name": "X_CSI_VCENTER_HOST",
"value": ""
},
{
"name": "X_CSI_VCENTER_USERNAME",
"value": ""
},
{
"name": "X_CSI_VCENTER_PWD",
"value": ""
}
],
"image": "dellemc/csi-powermax:v2.6.0",
Expand Down Expand Up @@ -246,7 +238,7 @@ metadata:
},
"mode": "Linked"
},
"image": "dellemc/csipowermax-reverseproxy:v2.4.0",
"image": "dellemc/csipowermax-reverseproxy:v2.5.0",
"imagePullPolicy": "IfNotPresent",
"tlsSecret": "csirevproxy-tls-secret"
}
Expand Down
9 changes: 5 additions & 4 deletions config/samples/storage_v1_csiisilon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,13 @@ spec:
# operator: "Exists"
# effect: "NoExecute"
# Uncomment if nodes you wish to use have the node-role.kubernetes.io/control-plane taint
# - key: "node-role.kubernetes.io/control-plane"
# operator: "Exists"
# effect: "NoSchedule"
# tolerations:
# - key: "node-role.kubernetes.io/control-plane"
# operator: "Exists"
# effect: "NoSchedule"

sideCars:
- name: common
args: ["--leader-election-lease-duration=15s", "--leader-election-renew-deadline=10s", "--leader-election-retry-period=5s"]
- name: provisioner
args: ["--volume-name-prefix=csipscale"]
args: ["--volume-name-prefix=csipscale"]
2 changes: 1 addition & 1 deletion config/samples/storage_v1_csipowermax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ spec:
effect: "NoExecute"
- key: "node.kubernetes.io/network-unavailable"
operator: "Exists"
effect: "NoExecute"
effect: "NoExecute"
6 changes: 6 additions & 0 deletions config/samples/storage_v1_csipowerstore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ spec:
value: "csi"
- name: X_CSI_FC_PORTS_FILTER_FILE_PATH
value: "/etc/fc-ports-filter"
sideCars:
# Uncomment the following to configure how often external-provisioner polls the driver to detect changed capacity
# Configure when the storageCapacity is set as "true"
# Allowed values: 1m,2m,3m,...,10m,...,60m etc. Default value: 5m
#- name: provisioner
# args: ["--capacity-poll-interval=5m"]
controller:
envs:
# X_CSI_NFS_ACLS: enables setting permissions on NFS mount directory
Expand Down
24 changes: 21 additions & 3 deletions config/samples/storage_v1_csivxflexos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ metadata:
namespace: test-vxflexos
spec:
driver:
# Config version for CSI Powerflex v2.6.0 driver
configVersion: v2.6.0
replicas: 1
dnsPolicy: ClusterFirstWithHostNet
forceUpdate: false
fsGroupPolicy: File
common:
# Image for CSI Powerflex driver v2.6.0
image: "dellemc/csi-vxflexos:v2.6.0"
imagePullPolicy: IfNotPresent
envs:
Expand All @@ -35,7 +33,7 @@ spec:

controller:
envs:

#"controller.nodeSelector" defines what nodes would be selected for pods of controller deployment
# Leave as blank to use all nodes
# Allowed values: map of key-value pairs
Expand All @@ -55,6 +53,26 @@ spec:

node:
envs:
# X_CSI_APPROVE_SDC_ENABLED: Enables/Disable SDC approval
# Allowed values:
# true: enable SDC approval
# false: disable SDC approval
# Default value: false
- name: X_CSI_APPROVE_SDC_ENABLED
value: "false"
# X_CSI_RENAME_SDC_ENABLED: Enable/Disable rename of SDC
# Allowed values:
# true: enable renaming
# false: disable renaming
# Default value: false
- name: X_CSI_RENAME_SDC_ENABLED
value: "false"
# X_CSI_RENAME_SDC_PREFIX: defines a string for prefix of the SDC name.
# "prefix" + "worker_node_hostname" should not exceed 31 chars.
# Default value: none
# Examples: "rhel-sdc", "sdc-test"
- name: X_CSI_RENAME_SDC_PREFIX
value: "sdc-test"

# "node.nodeSelector" defines what nodes would be selected for pods of node daemonset
# Leave as blank to use all nodes
Expand Down