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
34 changes: 34 additions & 0 deletions ci/integration/minio-rolearn/spire-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,44 @@ spike-keeper:
image:
pullPolicy: Never
tag: dev
extraInitContainers:
- name: wait-for-spire
image: cgr.dev/chainguard/bash:latest
command:
- /bin/bash
- -c
- |
echo "Waiting for SPIRE agent socket..."
while [ ! -S /spiffe-workload-api/spire-agent.sock ]; do
echo "Socket not found, waiting..."
sleep 2
done
echo "SPIRE agent socket is ready"
volumeMounts:
- name: spiffe-workload-api
mountPath: /spiffe-workload-api
readOnly: true

spike-nexus:
enabled: true
image:
pullPolicy: Never
tag: dev
backendStore: lite
extraInitContainers:
- name: wait-for-spire
image: cgr.dev/chainguard/bash:latest
command:
- /bin/bash
- -c
- |
echo "Waiting for SPIRE agent socket..."
while [ ! -S /spiffe-workload-api/spire-agent.sock ]; do
echo "Socket not found, waiting..."
sleep 2
done
echo "SPIRE agent socket is ready"
volumeMounts:
- name: spiffe-workload-api
mountPath: /spiffe-workload-api
readOnly: true
Loading