Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ csi-powerstore:
# CSM sidecars
replication:
image: quay.io/dell/container-storage-modules/dell-csi-replicator:v1.13.0
authorization:
image: quay.io/dell/container-storage-modules/csm-authorization-sidecar:v2.3.0
Comment thread
riya-kaushal7997 marked this conversation as resolved.
podmon:
image: quay.io/dell/container-storage-modules/podmon:v1.14.0
metadataretriever:
Expand Down Expand Up @@ -76,6 +78,10 @@ csi-powerstore:
# - key: "powerstore.podmon.storage.dell.com"
# operator: "Exists"
# effect: "NoSchedule"
authorization:
enabled: $AUTHORIZATION_ENABLED
proxyHost: $AUTHORIZATION_PROXY_HOST
skipCertificateValidation: $AUTHORIZATION_SKIP_CERTIFICATE_VALIDATION
storageCapacity:
enabled: $STORAGE_CAPACITY_ENABLED
podmon:
Expand Down Expand Up @@ -547,10 +553,6 @@ csi-unity:
# - key: "isilon.podmon.storage.dell.com"
# operator: "Exists"
# effect: "NoSchedule"
authorization:
enabled: $AUTHORIZATION_ENABLED
proxyHost: $AUTHORIZATION_PROXY_HOST
skipCertificateValidation: $AUTHORIZATION_SKIP_CERTIFICATE_VALIDATION
storageCapacity:
enabled: $STORAGE_CAPACITY_ENABLED
maxUnityVolumesPerNode: $MAX_VOLUMES_PER_NODE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ spec:
# Authorization: enable csm-authorization for RBAC
- name: authorization
# enabled: Enable/Disable csm-authorization
enabled: false
enabled: $AUTHORIZATION_ENABLED
configVersion: v2.3.0
components:
- name: karavi-authorization-proxy
Expand All @@ -205,11 +205,11 @@ spec:
# proxyHost: hostname of the csm-authorization server
# Default value: none
- name: "PROXY_HOST"
value: "csm-authorization.com"
value: "$AUTHORIZATION_PROXY_HOST"
# skipCertificateValidation: Enable/Disable certificate validation of the csm-authorization server
# Default value: "true"
- name: "SKIP_CERTIFICATE_VALIDATION"
value: "true"
value: "$AUTHORIZATION_SKIP_CERTIFICATE_VALIDATION"
- name: resiliency
# enabled: Enable/Disable Resiliency feature
# Allowed values:
Expand Down
Loading