13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
|
|
|
|
kubectl wait \
|
|
--namespace=ingress-nginx \
|
|
--for=condition=ready \
|
|
pod \
|
|
--selector=app.kubernetes.io/component=controller \
|
|
--timeout=90s |