CephFs-provisioner: fix cephfs storageclass
This is to remove invalid key "userSecretName" for cephfs storageclass as we are having toruble to provision a pvc with cephfs storageclass with "userSecretName" key . Failed to provision volume with StorageClass "cephfs": invalid option "userSecretName" Change-Id: Ide52987c9f8ef8fc2327bf30747395e70dc05f99
This commit is contained in:
parent
c01098f396
commit
53bdbf00ed
@ -108,9 +108,9 @@ spec:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
- name: PVC_CEPH_CEPHFS_STORAGECLASS_USER_SECRET_NAME
|
||||
value: {{ .Values.storageclass.cephfs.parameters.userSecretName }}
|
||||
- name: PVC_CEPH_CEPHFS_STORAGECLASS_ADMIN_SECRET_NAME
|
||||
value: {{ .Values.storageclass.cephfs.parameters.adminSecretName }}
|
||||
- name: PVC_CEPH_CEPHFS_STORAGECLASS_ADMIN_SECRET_NAME
|
||||
value: {{ .Values.secrets.keyrings.prov_adminSecretName }}
|
||||
- name: PVC_CEPH_CEPHFS_STORAGECLASS_DEPLOYED_NAMESPACE
|
||||
value: {{ .Values.storageclass.cephfs.parameters.adminSecretNamespace }}
|
||||
command:
|
||||
|
@ -135,6 +135,7 @@ pod:
|
||||
secrets:
|
||||
keyrings:
|
||||
admin: ceph-client-admin-keyring
|
||||
prov_adminSecretName: pvc-ceph-conf-combined-storageclass
|
||||
|
||||
network:
|
||||
public: 192.168.0.0/16
|
||||
@ -238,8 +239,7 @@ storageclass:
|
||||
name: cephfs
|
||||
parameters:
|
||||
adminId: admin
|
||||
userSecretName: pvc-ceph-cephfs-client-key
|
||||
adminSecretName: pvc-ceph-conf-combined-storageclass
|
||||
adminSecretName: pvc-ceph-cephfs-client-key
|
||||
adminSecretNamespace: ceph
|
||||
|
||||
endpoints:
|
||||
|
@ -46,8 +46,7 @@ examples:
|
||||
name: cephfs
|
||||
parameters:
|
||||
admin_id: admin
|
||||
user_secret_name: "pvc-ceph-cephfs-client-key"
|
||||
admin_secret_name: "pvc-ceph-conf-combined-storageclass"
|
||||
admin_secret_name: "pvc-ceph-cephfs-client-key"
|
||||
admin_secret_namespace: ceph
|
||||
usage: |
|
||||
{{- range $storageclass, $val := .Values.storageclass }}
|
||||
@ -77,11 +76,11 @@ examples:
|
||||
kind: StorageClass
|
||||
metadata:
|
||||
name: cephfs
|
||||
provisioner: ceph.com/rbd
|
||||
provisioner: ceph.com/cephfs
|
||||
parameters:
|
||||
monitors: ceph-mon.<ceph-namespace>.svc.<k8s-domain-name>:6789
|
||||
adminId: admin
|
||||
adminSecretName: pvc-ceph-conf-combined-storageclass
|
||||
adminSecretName: pvc-ceph-cephfs-client-key
|
||||
adminSecretNamespace: ceph
|
||||
*/}}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user