1
0
mirror of https://github.com/jcwimer/kubernetes-ansible synced 2026-04-07 22:47:24 +00:00

Initial Commit

This commit is contained in:
2018-11-14 08:43:38 -05:00
commit 1670ccf7be
23 changed files with 1161 additions and 0 deletions

3
wordpress.sh Normal file
View File

@@ -0,0 +1,3 @@
kubectl run wordpress --image=tutum/wordpress --port=80
wordpress_pod=$(kubectl get pods | grep wordpress | awk {'print $1'})
kubectl expose pod ${wordpress_pod} --name=wordpress --type=NodePort