Skip to content

Commit e819c8b

Browse files
committed
Fix YAML indentation in release cheat sheet
Signed-off-by: Shubham Bhardwaj <[email protected]>
1 parent d61cd64 commit e819c8b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tekton/release-cheat-sheet.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ need a checkout of the operator repo, a terminal window and a text editor.
101101
```bash
102102
WORKSPACE_TEMPLATE=$(mktemp /tmp/workspace-template.XXXXXX.yaml)
103103
cat <<'EOF' > $WORKSPACE_TEMPLATE
104-
spec:
105-
accessModes:
106-
- ReadWriteOnce
107-
resources:
108-
requests:
109-
storage: 1Gi
110-
EOF
104+
spec:
105+
accessModes:
106+
- ReadWriteOnce
107+
resources:
108+
requests:
109+
storage: 1Gi
110+
EOF
111111
```
112112
113113
1. Execute the release pipeline (takes ~45 mins).
@@ -180,11 +180,11 @@ EOF
180180
```shell
181181
POD_TEMPLATE=$(mktemp /tmp/pod-template.XXXXXX.yaml)
182182
cat <<'EOF' > $POD_TEMPLATE
183-
securityContext:
184-
fsGroup: 65532
185-
runAsUser: 65532
186-
runAsNonRoot: true
187-
EOF
183+
securityContext:
184+
fsGroup: 65532
185+
runAsUser: 65532
186+
runAsNonRoot: true
187+
EOF
188188
```
189189
```bash
190190
tkn --context dogfooding pipeline start \
@@ -197,7 +197,7 @@ EOF
197197
-p previous-release-tag="${TEKTON_OLD_VERSION}" \
198198
-p release-name="${TEKTON_RELEASE_NAME}" \
199199
-p repo-name="${TEKTON_REPO_NAME}" \
200-
-p bucket="tekton-releases/operator/" \
200+
-p bucket="tekton-releases" \
201201
-p rekor-uuid="REKOR_UUID" \
202202
release-draft-oci
203203
```

0 commit comments

Comments
 (0)