mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cd42ad67b2
Add encryption configuration to Ceph FS examples Signed-off-by: Marcel Lauhoff <marcel.lauhoff@suse.com>
18 lines
424 B
YAML
18 lines
424 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: csi-cephfs-secret
|
|
namespace: default
|
|
stringData:
|
|
# Required for statically provisioned volumes
|
|
userID: <plaintext ID>
|
|
userKey: <Ceph auth key corresponding to ID above>
|
|
|
|
# Required for dynamically provisioned volumes
|
|
adminID: <plaintext ID>
|
|
adminKey: <Ceph auth key corresponding to ID above>
|
|
|
|
# Encryption passphrase
|
|
encryptionPassphrase: test_passphrase
|