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

doc: Add hint that the userID must not include the client. prefix #5072

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions charts/ceph-csi-cephfs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ secret:
# Key values correspond to a user name and its key, as defined in the
# ceph cluster. User ID should have required access to the 'pool'
# specified in the storage class
# The userID must not include the "client." prefix!
userID: <plaintext ID>
userKey: <Ceph auth key corresponding to the userID above>

Expand Down
1 change: 1 addition & 0 deletions charts/ceph-csi-rbd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ secret:
# Key values correspond to a user name and its key, as defined in the
# ceph cluster. User ID should have required access to the 'pool'
# specified in the storage class
# The userID must not include the "client." prefix!
userID: <plaintext ID>
userKey: <Ceph auth key corresponding to userID above>
# Encryption passphrase
Expand Down
1 change: 1 addition & 0 deletions examples/cephfs/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
namespace: default
stringData:
# Required for statically and dynamically provisioned volumes
# The userID must not include the "client." prefix!
userID: <plaintext ID>
userKey: <Ceph auth key corresponding to ID above>

Expand Down
1 change: 1 addition & 0 deletions examples/rbd/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ stringData:
# Key values correspond to a user name and its key, as defined in the
# ceph cluster. User ID should have required access to the 'pool'
# specified in the storage class
# The userID must not include the "client." prefix!
userID: <plaintext ID>
userKey: <Ceph auth key corresponding to ID above>

Expand Down
Loading