114 lines
2.8 KiB
Bash
Executable File
114 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
function start_cert_manager {
|
|
|
|
kubectl apply -f ./cert-manager/cert-manager.yaml;
|
|
kubectl wait --for=condition=available \
|
|
--timeout=600s \
|
|
deployment.apps/cert-manager \
|
|
deployment.apps/cert-manager-cainjector \
|
|
deployment.apps/cert-manager-webhook \
|
|
-n cert-manager;
|
|
|
|
}
|
|
|
|
function application_deploy {
|
|
|
|
kubectl apply -f ./portfolio-namespace.yaml;
|
|
|
|
kubectl apply -f \
|
|
./cert-manager/cert-manager-certificate.yaml;
|
|
|
|
kubectl apply -f ./postgres;
|
|
kubectl wait --for=condition=available \
|
|
--timeout=600s \
|
|
deployment.apps/postgres-deployment \
|
|
-n portfolio;
|
|
|
|
kubectl apply -f ./redis;
|
|
kubectl wait --for=condition=available \
|
|
--timeout=600s \
|
|
deployment.apps/redis-deployment \
|
|
-n portfolio;
|
|
|
|
kubectl apply -f ./frontend;
|
|
kubectl wait --for=condition=available \
|
|
--timeout=600s \
|
|
deployment.apps/frontend-deployment \
|
|
-n portfolio;
|
|
|
|
kubectl apply -f ./backend;
|
|
kubectl wait --for=condition=available \
|
|
--timeout=600s \
|
|
deployment.apps/backend-deployment \
|
|
-n portfolio;
|
|
|
|
kubectl apply -f \
|
|
./nginx-ingress/nginx-ingress-root.yaml;
|
|
kubectl apply -f \
|
|
./nginx-ingress/nginx-ingress-api.yaml;
|
|
|
|
}
|
|
|
|
function main {
|
|
|
|
if [[ $1 == "--test" || $1 == "-t" ]]; then
|
|
|
|
function kubectl {
|
|
minikube kubectl -- $@
|
|
}
|
|
|
|
minikube start --driver docker;
|
|
minikube addons enable ingress;
|
|
|
|
start_cert_manager
|
|
|
|
kubectl apply -f \
|
|
./cert-manager/cert-manager-issuer-dev.yaml;
|
|
|
|
application_deploy
|
|
|
|
echo "http://$(/usr/local/bin/minikube ip)";
|
|
|
|
elif [[ $1 == "--staging" || $1 == "-s" ]]; then
|
|
|
|
export INSTALL_K3S_EXEC="--no-deploy traefik";
|
|
curl -sfL https://get.k3s.io | sh -s -;
|
|
sudo chmod 644 /etc/rancher/k3s/k3s.yaml;
|
|
|
|
kubectl apply -f ./nginx-ingress/nginx-ingress.yaml;
|
|
kubectl wait --namespace ingress-nginx \
|
|
--for=condition=ready pod \
|
|
--selector=app.kubernetes.io/component=controller \
|
|
--timeout=120s;
|
|
|
|
start_cert_manager
|
|
kubectl apply -f ./cert-manager/cert-manager-issuer-staging.yaml;
|
|
|
|
application_deploy
|
|
|
|
else
|
|
|
|
export INSTALL_K3S_EXEC="--no-deploy traefik";
|
|
curl -sfL https://get.k3s.io | sh -s -;
|
|
sudo chmod 644 /etc/rancher/k3s/k3s.yaml;
|
|
|
|
kubectl apply -f ./nginx-ingress/nginx-ingress.yaml;
|
|
kubectl wait --namespace ingress-nginx \
|
|
--for=condition=ready pod \
|
|
--selector=app.kubernetes.io/component=controller \
|
|
--timeout=120s;
|
|
|
|
start_cert_manager
|
|
kubectl apply -f ./cert-manager/cert-manager-issuer-prod.yaml;
|
|
|
|
application_deploy
|
|
|
|
fi
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
main $1
|