Compare commits
2 Commits
67c17c3ca1
...
f510755114
| Author | SHA1 | Date | |
|---|---|---|---|
|
f510755114
|
|||
| b7913afca1 |
@@ -44,10 +44,18 @@ jobs:
|
|||||||
|
|
||||||
- name: Add Repositories
|
- name: Add Repositories
|
||||||
run: |
|
run: |
|
||||||
|
echo ">> Adding repositories for chart dependencies ..."
|
||||||
for chart_path in ${MAIN_DIR}/clusters/$cluster/helm/*; do
|
for chart_path in ${MAIN_DIR}/clusters/$cluster/helm/*; do
|
||||||
helm dependency list --max-col-width 120 $chart_path 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
|
helm dependency list --max-col-width 120 $chart_path 2> /dev/null \
|
||||||
|
| tail +2 | head -n 1 \
|
||||||
|
| tee repo_added \
|
||||||
|
| awk '{ print "helm repo add " $1 " " $3 }' \
|
||||||
|
| while read cmd; do $cmd; done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo ">> Added following repos:"
|
||||||
|
cat repo_add | sort | uniq
|
||||||
|
|
||||||
- name: Render Helm Manifests
|
- name: Render Helm Manifests
|
||||||
run: |
|
run: |
|
||||||
for cluster in ${CLUSTERS}; do
|
for cluster in ${CLUSTERS}; do
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ shelly-plug:
|
|||||||
main:
|
main:
|
||||||
image:
|
image:
|
||||||
repository: php
|
repository: php
|
||||||
tag: 8.4.15-apache-bookworm
|
tag: 8.5.0-apache-bookworm
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: SHELLY_HOSTNAME
|
- name: SHELLY_HOSTNAME
|
||||||
|
|||||||
Reference in New Issue
Block a user