From 53d4582ca0a27bff0ed73f79fd43ba08fd68cf29 Mon Sep 17 00:00:00 2001 From: Jeny Sadadia Date: Fri, 1 Sep 2023 13:13:37 +0530 Subject: [PATCH] kube/minikube/scripts: rename apply-all.sh script Rename script from `apply-all.sh` to `deploy.sh`. The script can be used to automate API deployment in k8s. Signed-off-by: Jeny Sadadia --- kube/minikube/README.md | 4 ++-- kube/minikube/scripts/{apply-all.sh => deploy.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename kube/minikube/scripts/{apply-all.sh => deploy.sh} (100%) diff --git a/kube/minikube/README.md b/kube/minikube/README.md index 5a0139ad..0c08ef88 100644 --- a/kube/minikube/README.md +++ b/kube/minikube/README.md @@ -144,8 +144,8 @@ To clean up everything simply use the ```clean-all.sh``` script provided in the ## Deploying all the resources at once -To apply all the resources at once, you can use the ```apply-all.sh``` script provided in the root of the kube/minikube/scripts folder by running +To apply all the resources at once, you can use the ```deploy.sh``` script provided in the root of the kube/minikube/scripts folder by running ``` -./apply-all.sh +./deploy.sh ``` This script would also do the clean up and will deploy everything afresh. But it can be time-consuming to deploy everything afresh, so if you want to reconfigure some deployment maybe because the image is updated, just reapply that deployment or do the rolling update instead of running this script. diff --git a/kube/minikube/scripts/apply-all.sh b/kube/minikube/scripts/deploy.sh similarity index 100% rename from kube/minikube/scripts/apply-all.sh rename to kube/minikube/scripts/deploy.sh