mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
15 lines
326 B
Bash
15 lines
326 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# DEPLOY INGRESS-NGINX
|
||
|
|
||
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
|
||
|
|
||
|
sleep 15
|
||
|
|
||
|
kubectl wait --namespace ingress-nginx \
|
||
|
--for=condition=ready pod \
|
||
|
--selector=app.kubernetes.io/component=controller \
|
||
|
--timeout=90s
|