Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions deployments/charts/quick-start/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,9 @@ backend-operator:
- sh
- -c
- |
# Mostly used to fail fast if there is a transient issue with apk add.
# For simplicity let K8s restart and retry the container.
set -e
apk add --no-cache curl jq
echo "Waiting for backend-operator-token to be created..."
until curl -s http://quick-start.osmo/api/auth/access_token/service | jq -e '.[] | select(.token_name == "backend-operator-token")' >/dev/null 2>&1; do
Expand Down Expand Up @@ -791,6 +794,9 @@ backend-operator:
- sh
- -c
- |
# Mostly used to fail fast if there is a transient issue with apk add.
# For simplicity let K8s restart and retry the container.
set -e
apk add --no-cache curl jq
echo "Waiting for backend-operator-token to be created..."
until curl -s http://quick-start.osmo/api/auth/access_token/service | jq -e '.[] | select(.token_name == "backend-operator-token")' >/dev/null 2>&1; do
Expand Down