blob: d0c3044ad49e64d1e8952f200e76ac0f22366705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
apply:
kubectl apply -f apache-persistent-volume.yaml
kubectl apply -f apache-service.yaml
kubectl apply -f apache-deployment.yaml
kubectl apply -f apache-ingress.yaml
delete:
kubectl delete -f apache-ingress.yaml
kubectl delete -f apache-service.yaml
kubectl delete -f apache-deployment.yaml
kubectl delete -f apache-persistent-volume.yaml
|