chore: patch docs accordingly

This commit is contained in:
Daan
2026-07-09 15:21:07 +02:00
parent 12d63282a3
commit 40128e86af

View File

@ -24,7 +24,9 @@ init:
digest: "" digest: ""
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
fullOverride: "" fullOverride: ""
connectionCommandOverride: "apk add curl && curl -I"
connectionCommandOverride: "curl -I"
preConnectionCommandOverride: "apk add curl"
``` ```
This now creates the following template section: This now creates the following template section:
@ -36,8 +38,9 @@ This now creates the following template section:
- sh - sh
- -c - -c
- | - |
apk add curl
echo 'Trying to reach Gitea on https://gitea.com' echo 'Trying to reach Gitea on https://gitea.com'
until timeout 10 apk add curl && curl -I https://gitea.com; do until timeout 10 curl -I https://gitea.com; do
sleep 3 sleep 3
echo "Trying again in 3 seconds..." echo "Trying again in 3 seconds..."
done done