Skip to content
Snippets Groups Projects
Commit 6771f4f4 authored by Adriaan de Beer's avatar Adriaan de Beer
Browse files

ST-456 testing Bash shell var

parent ebb1bd21
No related branches found
No related tags found
No related merge requests found
SHELL := /bin/bash
KUBE_NAMESPACE ?= ska-docker#namespace to be used
RELEASE_NAME ?= test## release name of the chart
UMBRELLA_CHART_PATH ?= ska-docker/## Path of the umbrella chart to work with
......@@ -37,7 +38,7 @@ namespace: ## create the kubernetes namespace
fi
delete_namespace: ## delete the kubernetes namespace
@if [ "default" = "$(KUBE_NAMESPACE)" ] || [ "kube-system" = "$(KUBE_NAMESPACE)" ]; then \
@if [ "default" == "$(KUBE_NAMESPACE)" ] || [ "kube-system" == "$(KUBE_NAMESPACE)" ]; then \
echo "You cannot delete Namespace: $(KUBE_NAMESPACE)"; \
exit 1; \
else \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment