Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 697 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 697 Bytes

template-kubectl

Template repository with example data for using autoapply with kubectl.

This is a template repository. To create a clean copy of the repository, click Use this template

To try it out, make sure you are connected to the correct Kubernetes cluster:

$ kubectl cluster-info
$ kubectl get nodes

To see which resources would get created, run:

$ ./autosetup.sh

To apply the resources to your cluster, run the following:

$ ./autosetup.sh | kubectl apply -f -

To remove the resources, just delete the namespace:

$ kubectl delete namespace autoapply-test