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

[bug-1220]: Add configuration steps for Powermax with Authorization for reverseproxy #1176

Merged
merged 1 commit into from
Jul 11, 2024
Merged
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 @@ -79,6 +79,8 @@ Create the karavi-authorization-config secret using this command:

- Update `authorization.skipCertificateValidation` to `true` or `false` depending on if you want to disable or enable certificate validation of the CSM Authorization Proxy Server.

- Update `csireverseproxy.deployAsSidecar` to `true`.

Example:

```yaml
Expand All @@ -89,6 +91,14 @@ Create the karavi-authorization-config secret using this command:
managementServers:
- endpoint: https://localhost:9400

csireverseproxy:
# Set enabled to true if you want to deploy csireverseproxy as sidecar
# Allowed values:
# "true" - CSI reverse proxy will be deployed as a sidecar
# "false" - CSI reverse proxy will be deployed along with driver
# Default value: "true"
deployAsSidecar: true

authorization:
enabled: true

Expand Down Expand Up @@ -122,10 +132,22 @@ Create the karavi-authorization-config secret using this command:

- Update the `SKIP_CERTIFICATE_VALIDATION` environment value to `true` or `false` depending on if you want to disable or enable certificate validation of the CSM Authorization Proxy Server.

- Update the `DeployAsSidecar` environment variable for the `csipowermax-reverseproxy` component to `true`.

Example:

```yaml
modules:
- name: csireverseproxy
# enabled: Always set to true
enabled: true
forceRemoveModule: true
configVersion: v2.10.0
components:
- name: csipowermax-reverseproxy
envs:
- name: "DeployAsSidecar"
value: "true"
# Authorization: enable csm-authorization for RBAC
- name: authorization
# enable: Enable/Disable csm-authorization
Expand Down
Loading