File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 4646 ct install --target-branch ${{ github.event.repository.default_branch }} \
4747 --chart-repos=bitnami=https://charts.bitnami.com/bitnami \
4848 --chart-repos=rstuf=https://repository-service-tuf.github.io/helm-charts \
49- --chart-repos=localstack=https://localstack.github.io/helm-charts
49+ --chart-repos=localstack=https://localstack.github.io/helm-charts \
50+ --helm-extra-set-args="--set rstuf-worker.initContainers=null,rstuf-api.initContainers=null" \
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : rstuf-demo
33description : RSTUF Demo deploying RSTUF services and infrastructure services. This deployment is not recommended for production.
4- version : 0.3.9
4+ version : 0.3.10
55maintainers :
66 - name : kairoaraujo
77
88dependencies :
99 - name : rstuf-api
10- version : 0.2.2
10+ version : 0.2.3
1111 repository : " https://repository-service-tuf.github.io/helm-charts"
1212 - name : rstuf-worker
13- version : 0.4.0
13+ version : 0.4.1
1414 repository : " https://repository-service-tuf.github.io/helm-charts"
1515 - name : postgresql
1616 version : 16.6.2
Original file line number Diff line number Diff line change 11rstuf-api :
2+ initContainers :
3+ - name : wait-for-valkey
4+ image : busybox:1.37
5+ command : ['sh', '-c', 'until nc -z rstuf-valkey-primary.rstuf.svc.cluster.local 6379 ; do echo "waiting for Valkey..."; sleep 2; done;']
26 backend :
37 brokerServer : " redis://rstuf-valkey-primary.rstuf.svc.cluster.local"
48 redisServer : " redis://rstuf-valkey-primary.rstuf.svc.cluster.local"
@@ -12,6 +16,13 @@ rstuf-api:
1216 tls : []
1317
1418rstuf-worker :
19+ initContainers :
20+ - name : wait-for-valkey
21+ image : busybox:1.37
22+ command : ['sh', '-c', 'until nc -z rstuf-valkey-primary.rstuf.svc.cluster.local 6379 ; do echo "waiting for Valkey..."; sleep 2; done;']
23+ - name : wait-for-postgres
24+ image : busybox:1.37
25+ command : ['sh', '-c', 'until nc -z rstuf-postgresql.rstuf.svc.cluster.local 5432; do echo "waiting for Postgres..."; sleep 2; done;']
1526 backend :
1627 dbServer : " postgresql://postgres:postgres@rstuf-postgresql.rstuf.svc.cluster.local/rstuf"
1728 brokerServer : " redis://rstuf-valkey-primary.rstuf.svc.cluster.local"
You can’t perform that action at this time.
0 commit comments