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

Adding CSI Powerstore known issues #971

Merged
merged 2 commits into from
Sep 6, 2023
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
16 changes: 15 additions & 1 deletion CHANGELOG/CHANGELOG-1.8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
- [v1.8.0](#v180)
- [Changelog since v1.7.1](#changelog-since-v171)
- [Known Issues](#known-issues)
- [CSI PowerStore: Not able to create ephemeral pods in OpenShift 4.13](#csi-powerstore-not-able-to-create-ephemeral-pods-in-openshift-413)
- [CSI PowerStore: In OpenShift 4.13, root user is not allowed to perform write operations on NFS shares when root squashing is enabled](#csi-powerstore-in-openshift-413-root-user-is-not-allowed-to-perform-write-operations-on-nfs-shares-when-root-squashing-is-enabled)
- [Changes by Kind](#changes-by-kind)
- [Deprecation](#deprecation)
- [Features](#features)
Expand All @@ -12,7 +14,19 @@

## Changelog since v1.7.1

## Known Issues
## Known Issues

### CSI PowerStore: Not able to create ephemeral pods in OpenShift 4.13

Ephemeral pod is not being created in OpenShift 4.13 and is failing with the error "error when creating pod: the pod uses an inline volume provided by CSIDriver csi-powerstore.dellemc.com, and the namespace has a pod security enforcement level that is lower than privileged."

This issue occurs because OpenShift 4.13 introduced the CSI Volume Admission plugin to restrict the use of a CSI driver capable of provisioning CSI ephemeral volumes during pod admission (https://docs.openshift.com/container-platform/4.13/storage/container_storage_interface/ephemeral-storage-csi-inline.html). Therefore, an additional label "security.openshift.io/csi-ephemeral-volume-profile" needs to be added to the CSIDriver object to support inline ephemeral volumes.

### CSI PowerStore: In OpenShift 4.13, root user is not allowed to perform write operations on NFS shares when root squashing is enabled

In OpenShift 4.13, the root user is not allowed to perform write operations on NFS shares, when root squashing is enabled.

The workaround for this issue is to disable root squashing by setting allowRoot: "true" in the NFS storage class.

## Changes by Kind

Expand Down