mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
fix(pvc): show access modes [EE-5581] (#10554)
Co-authored-by: testa113 <testa113>
This commit is contained in:
parent
87b486b798
commit
e3a995d515
5 changed files with 25 additions and 20 deletions
|
@ -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,
|
||||
},
|
||||
|
|
|
@ -11,6 +11,7 @@ const _KubernetesPersistentVolumeClaim = Object.freeze({
|
|||
StorageClass: {}, // KubernetesStorageClass
|
||||
CreationDate: '',
|
||||
ApplicationOwner: '',
|
||||
AccessModes: [],
|
||||
ApplicationName: '',
|
||||
MountPath: '', // used for Application creation from ApplicationFormValues | not used from API conversion
|
||||
Yaml: '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue