summaryrefslogtreecommitdiffstats
path: root/src/vagrant/k8s_kubeadm/examples/nginx-app.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/vagrant/k8s_kubeadm/examples/nginx-app.sh')
-rwxr-xr-xsrc/vagrant/k8s_kubeadm/examples/nginx-app.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vagrant/k8s_kubeadm/examples/nginx-app.sh b/src/vagrant/k8s_kubeadm/examples/nginx-app.sh
new file mode 100755
index 0000000..bfd0613
--- /dev/null
+++ b/src/vagrant/k8s_kubeadm/examples/nginx-app.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+
+kubectl create -f /vagrant/examples/nginx-app.yaml
+kubectl get nodes
+kubectl get services
+kubectl get pods
+kubectl get rc
+sleep 120
+svcip=$(kubectl get services nginx -o json | grep clusterIP | cut -f4 -d'"')
+wget http://$svcip