Skip to content

Commit 7773d2f

Browse files
committed
OSDOCS-5355: correct command for creating kustomization.yaml
The command uses bash "here document" syntax to create a file, but the content of the file was in a separate text box and so could not be selected all at one time. This patch combines the command for creating the file with the contents of the file and removes a syntax error from the middle of the content. Signed-off-by: Doug Hellmann <[email protected]>
1 parent fadffe2 commit 7773d2f

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

modules/microshift-config-auto-apply-manifests.adoc

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,10 @@ EOF
8686
[source,terminal]
8787
----
8888
$ sudo cat << EOF > ${MANIFEST_DIR}/kustomization.yaml
89-
----
90-
.. Apply the YAML configuration:
91-
+
92-
[source,terminal]
93-
----
94-
$ {MANIFEST_DIR}/kustomization.yaml
95-
89+
---
9690
apiVersion: kustomize.config.k8s.io/v1beta1
9791
kind: Kustomization
9892
namespace: busybox
99-
---
10093
resources:
10194
- busybox.yaml
10295
images:

0 commit comments

Comments
 (0)