1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 07:19:41 +02:00

fix(pvc): show access modes [EE-5581] (#10554)

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2023-11-30 09:48:55 +13:00 committed by GitHub
parent 87b486b798
commit e3a995d515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 20 deletions

View file

@ -3,12 +3,12 @@
*/
const _KubernetesStorageClassAccessPolicies = Object.freeze([
{
Name: 'RWO',
Name: 'ReadWriteOnce',
Description: 'Allow read-write from a single pod only (RWO)',
selected: true,
},
{
Name: 'RWX',
Name: 'ReadWriteMany',
Description: 'Allow read-write access from one or more pods concurrently (RWX)',
selected: false,
},