Skip to content

Commit

Permalink
Add script to ensure correct env variables (#19)
Browse files Browse the repository at this point in the history
Signed-off-by: michal.gubricky <michal.gubricky@dnation.cloud>
Co-authored-by: Matej Feder <feder.mato@gmail.com>
  • Loading branch information
michal-gubricky and matofeder authored Dec 19, 2023
1 parent c31dd39 commit a5eb655
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -563,5 +563,5 @@ builder-image-push: ## Build $(CONTROLLER_SHORT)-builder to a new version. For m
# test: test-unit test-integration ## Runs all unit and integration tests.

.PHONY: tilt-up
tilt-up: $(ENVSUBST) $(KUBECTL) $(KUSTOMIZE) $(TILT) cluster ## Start a mgt-cluster & Tilt. Installs the CRDs and deploys the controllers
tilt-up: env-vars-for-wl-cluster $(ENVSUBST) $(KUBECTL) $(KUSTOMIZE) $(TILT) cluster ## Start a mgt-cluster & Tilt. Installs the CRDs and deploys the controllers
EXP_CLUSTER_RESOURCE_SET=true $(TILT) up --port=10351
32 changes: 32 additions & 0 deletions hack/ensure-env-variables.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash
# Copyright 2023 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

if [ "$#" -lt 1 ]; then
echo "Usage: $0 VAR1 VAR2 ..."
exit 1
fi

missing_vars=()
for varname in "$@"; do
eval varvalue="\$$varname"
if [ -z "$varvalue" ]; then
missing_vars+=("$varname")
fi
done

if [ ${#missing_vars[@]} -gt 0 ]; then
echo "Missing or empty environment variables: ${missing_vars[*]}"
exit 1
fi

0 comments on commit a5eb655

Please sign in to comment.