Skip to content

Commit

Permalink
fix wrong rabbitmq creds, less logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Veki301 committed Jan 21, 2025
1 parent 4705a6f commit 9eef2c2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 7 additions & 11 deletions bin/offline-helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,24 @@ helm upgrade --install --wait rabbitmq ./charts/rabbitmq --values ./values/rabbi
helm upgrade --install --wait databases-ephemeral ./charts/databases-ephemeral --values ./values/databases-ephemeral/prod-values.example.yaml
helm upgrade --install --wait reaper ./charts/reaper
helm upgrade --install wire-server ./charts/wire-server --values ./values/wire-server/prod-values.example.yaml --values ./values/wire-server/secrets.yaml
sleep 5m
./bin/debug_logs.sh
sleep 5m
./bin/debug_logs.sh
sleep 5m
./bin/debug_logs.sh
sleep 15m
# if charts/webapp directory exists
if [ -d "./charts/webapp" ]; then
helm upgrade --install --wait --timeout=15m0s webapp ./charts/webapp --values ./values/webapp/prod-values.example.yaml
helm upgrade --install webapp ./charts/webapp --values ./values/webapp/prod-values.example.yaml
fi

if [ -d "./charts/account-pages" ]; then
helm upgrade --install --wait --timeout=15m0s account-pages ./charts/account-pages --values ./values/account-pages/prod-values.example.yaml
helm upgrade --install account-pages ./charts/account-pages --values ./values/account-pages/prod-values.example.yaml
fi

if [ -d "./charts/team-settings" ]; then
helm upgrade --install --wait --timeout=15m0s team-settings ./charts/team-settings --values ./values/team-settings/prod-values.example.yaml --values ./values/team-settings/prod-secrets.example.yaml
helm upgrade --install team-settings ./charts/team-settings --values ./values/team-settings/prod-values.example.yaml --values ./values/team-settings/prod-secrets.example.yaml
fi

helm upgrade --install --wait --timeout=15m0s smallstep-accomp ./charts/smallstep-accomp --values ./values/smallstep-accomp/prod-values.example.yaml
helm upgrade --install --wait --timeout=15m0s ingress-nginx-controller ./charts/ingress-nginx-controller --values ./values/ingress-nginx-controller/hetzner-ci.example.yaml
helm upgrade --install smallstep-accomp ./charts/smallstep-accomp --values ./values/smallstep-accomp/prod-values.example.yaml
helm upgrade --install ingress-nginx-controller ./charts/ingress-nginx-controller --values ./values/ingress-nginx-controller/hetzner-ci.example.yaml

sleep 15m
echo "Printing all pods status: "
kubectl get pods --all-namespaces -o wide
./bin/debug_logs.sh
Expand Down
2 changes: 1 addition & 1 deletion bin/offline-secrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ gundeck:
awsSecretKey: dummysecret
rabbitmq:
username: wire-server
password: very-secure-password
password: verysecurepassword
nginz:
secrets:
zAuth:
Expand Down
4 changes: 4 additions & 0 deletions values/wire-server/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,3 +258,7 @@ legalhold:
federator:
tls:
useSharedFederatorSecret: true

background-worker:
config:
enableFederation: false

0 comments on commit 9eef2c2

Please sign in to comment.