Untitled
unknown
plain_text
5 months ago
551 B
3
Indexable
apiVersion: apps/v1 kind: Deployment metadata: labels: app: vote name: vote spec: replicas: 1 selector: matchLabels: app: vote template: metadata: labels: app: vote spec: initContainers: - name: check-redis image: busybox:latest command: ['sh', '-c', 'until nc -z redis 6379; do echo "Waiting for redis..."; sleep 2; done;'] containers: - image: dockersamples/examplevotingapp_vote name: vote ports: - containerPort: 80 name: vote
Editor is loading...
Leave a Comment