From 1f762d0403e3c960526a6c46fc31adfbe2190af7 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Wed, 17 May 2023 20:10:05 +0100 Subject: [PATCH] Replace ASCII art arrows in comments Plain comments work just as well. --- .../tasks/administer-cluster/encrypt-data.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/en/docs/tasks/administer-cluster/encrypt-data.md b/content/en/docs/tasks/administer-cluster/encrypt-data.md index dc9c443050..4bfac0ffa4 100644 --- a/content/en/docs/tasks/administer-cluster/encrypt-data.md +++ b/content/en/docs/tasks/administer-cluster/encrypt-data.md @@ -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 ... ```