Merge pull request #41196 from sftim/20230517_revise_encryption_at_rest
Replace ASCII art arrows in comments
This commit is contained in:
commit
792a63ef7a
|
@ -321,19 +321,19 @@ To create a new Secret, perform the following steps:
|
|||
- command:
|
||||
- kube-apiserver
|
||||
...
|
||||
- --encryption-provider-config=/etc/kubernetes/enc/enc.yaml # <-- add this line
|
||||
- --encryption-provider-config=/etc/kubernetes/enc/enc.yaml # add this line
|
||||
volumeMounts:
|
||||
...
|
||||
- name: enc # <-- add this line
|
||||
mountPath: /etc/kubernetes/enc # <-- add this line
|
||||
readonly: true # <-- add this line
|
||||
- name: enc # add this line
|
||||
mountPath: /etc/kubernetes/enc # add this line
|
||||
readonly: true # add this line
|
||||
...
|
||||
volumes:
|
||||
...
|
||||
- name: enc # <-- add this line
|
||||
hostPath: # <-- add this line
|
||||
path: /etc/kubernetes/enc # <-- add this line
|
||||
type: DirectoryOrCreate # <-- add this line
|
||||
- name: enc # add this line
|
||||
hostPath: # add this line
|
||||
path: /etc/kubernetes/enc # add this line
|
||||
type: DirectoryOrCreate # add this line
|
||||
...
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue