mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-07-16 11:14:44 +00:00
chore: patch docs accordingly
This commit is contained in:
@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user