Compare commits
2 Commits
0eaf4cac5b
...
1732151e2a
| Author | SHA1 | Date | |
|---|---|---|---|
|
1732151e2a
|
|||
| 829424941f |
@@ -194,7 +194,7 @@ jobs:
|
||||
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||
|
||||
# Strip comments again to ensure formatting correctness
|
||||
for file in $OUTPUT_FOLDER; do
|
||||
for file in "$OUTPUT_FOLDER"/*; do
|
||||
yq -i '... comments=""' $file
|
||||
done
|
||||
|
||||
|
||||
@@ -179,7 +179,7 @@ jobs:
|
||||
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||
|
||||
# Strip comments again to ensure formatting correctness
|
||||
for file in $OUTPUT_FOLDER; do
|
||||
for file in "$OUTPUT_FOLDER"/*; do
|
||||
yq -i '... comments=""' $file
|
||||
done
|
||||
|
||||
|
||||
@@ -199,7 +199,7 @@ jobs:
|
||||
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||
|
||||
# Strip comments again to ensure formatting correctness
|
||||
for file in $OUTPUT_FOLDER; do
|
||||
for file in "$OUTPUT_FOLDER"/*; do
|
||||
yq -i '... comments=""' $file
|
||||
done
|
||||
|
||||
|
||||
@@ -197,7 +197,7 @@ jobs:
|
||||
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||
|
||||
# Strip comments again to ensure formatting correctness
|
||||
for file in $OUTPUT_FOLDER; do
|
||||
for file in "$OUTPUT_FOLDER"/*; do
|
||||
yq -i '... comments=""' $file
|
||||
done
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ services:
|
||||
- /dev/net/tun:/dev/net/tun
|
||||
|
||||
postgresql:
|
||||
image: docker.io/postgres:17.7-alpine3.21
|
||||
image: docker.io/postgres:18.1-alpine3.21
|
||||
container_name: gitea-postgres
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
Reference in New Issue
Block a user