add deployment
This commit is contained in:
23
deployment/deploy.sh
Executable file
23
deployment/deploy.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "$IMAGE_TAG" == "" ]; then
|
||||
echo "Make sure IMAGE_TAG is set"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
IMAGE_NAME=gitea.hottis.de/wn/dtrack-defectdojo-automation-server
|
||||
NAMESPACE=webservices
|
||||
DEPLOYMENT_DIR=$PWD/deployment
|
||||
|
||||
pushd $DEPLOYMENT_DIR >/dev/null
|
||||
|
||||
kubectl create namespace $NAMESPACE \
|
||||
--dry-run=client \
|
||||
-o yaml |
|
||||
kubectl -f - apply
|
||||
|
||||
cat $DEPLOYMENT_DIR/deploy-yml.tmpl |
|
||||
sed -e 's,%IMAGE%,'$IMAGE_NAME':'$IMAGE_TAG','g |
|
||||
kubectl apply -f - -n $NAMESPACE
|
||||
|
||||
popd >/dev/null
|
Reference in New Issue
Block a user