Update scripts
This commit is contained in:
parent
c14a75b6b5
commit
2aae249b82
26
deploy
26
deploy
|
@ -7,27 +7,41 @@ DEPLOY_MODE="flux"
|
||||||
readonly DEPLOY_MODE
|
readonly DEPLOY_MODE
|
||||||
APP_NAMESPACE="app"
|
APP_NAMESPACE="app"
|
||||||
readonly APP_NAMESPACE
|
readonly APP_NAMESPACE
|
||||||
PGSQLHA_VERSION="12.3.7"
|
MONITORING_NAMESPACE="monitoring"
|
||||||
readonly PGSQLHA_VERSION
|
readonly MONITORING_NAMESPACE
|
||||||
|
PGSQLHA_CHART_VERSION="12.3.7"
|
||||||
|
readonly PGSQLHA_CHART_VERSION
|
||||||
PGSQLHA_OCI_URL="oci://registry-1.docker.io/bitnamicharts/postgresql-ha"
|
PGSQLHA_OCI_URL="oci://registry-1.docker.io/bitnamicharts/postgresql-ha"
|
||||||
readonly PGSQLHA_OCI_URL
|
readonly PGSQLHA_OCI_URL
|
||||||
|
GTFSO_IMPORT_CHART_VERSION="0.1.0"
|
||||||
|
readonly GTFSO_IMPORT_CHART_VERSION
|
||||||
|
GTFSO_VBB_CHART_VERSION="0.1.0"
|
||||||
|
readonly GTFSO_VBB_CHART_VERSION
|
||||||
|
|
||||||
# Create namespace
|
|
||||||
|
# Create namespaces
|
||||||
kubectl create namespace "${APP_NAMESPACE}"
|
kubectl create namespace "${APP_NAMESPACE}"
|
||||||
|
kubectl create namespace "${MONITORING_NAMESPACE}"
|
||||||
|
|
||||||
# Add Helm Charts
|
# Add Deployments / Helm Charts either via fluxcd or Helm
|
||||||
if [ "flux" == $DEPLOY_MODE ]; then
|
if [ "flux" == $DEPLOY_MODE ]; then
|
||||||
# Add Helm Charts via Flux HelmRelease CRD
|
# Add Helm Charts via Flux HelmRelease CRD
|
||||||
printf "Using flux to create HelmRelease\n"
|
printf "Using flux to create HelmRelease\n"
|
||||||
./flux create helmrelease pgsql-ha \
|
./flux create helmrelease pgsql-ha \
|
||||||
--chart postgresql-ha \
|
--chart postgresql-ha \
|
||||||
--chart-version "${PGSQLHA_VERSION}" \
|
--chart-version "${PGSQLHA_CHART_VERSION}" \
|
||||||
--source HelmRepository/bitnamicharts \
|
--source HelmRepository/bitnamicharts \
|
||||||
--namespace "${APP_NAMESPACE}"
|
--namespace "${APP_NAMESPACE}"
|
||||||
elif [ "helm" == $DEPLOY_MODE ]; then
|
elif [ "helm" == $DEPLOY_MODE ]; then
|
||||||
# Add Helm Charts via Helm
|
# Add Helm Charts via Helm
|
||||||
printf "Using Helm to install Chart\n"
|
printf "Using Helm to install Chart\n"
|
||||||
helm install pgsql-ha "${PGSQLHA_OCI_URL}" \
|
helm install pgsql-ha "${PGSQLHA_OCI_URL}" \
|
||||||
--version "${PGSQLHA_VERSION}" \
|
--version "${PGSQLHA_CHART_VERSION}" \
|
||||||
|
--namespace "${APP_NAMESPACE}"
|
||||||
|
helm install gtfso-import charts/gtfso-import \
|
||||||
|
--version "${GTFSO_IMPORT_CHART_VERSION}" \
|
||||||
|
--namespace "${APP_NAMESPACE}"
|
||||||
|
helm install gtfso-vbb charts/gtfso-vbb \
|
||||||
|
--version "${GTFSO_VBB_CHART_VERSION}" \
|
||||||
--namespace "${APP_NAMESPACE}"
|
--namespace "${APP_NAMESPACE}"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -68,7 +68,7 @@ fi
|
||||||
if ! $(which terraform) or 1=="$TF_FORCE_LOCAL"; then
|
if ! $(which terraform) or 1=="$TF_FORCE_LOCAL"; then
|
||||||
printf "Fetching terraform archive..\n"
|
printf "Fetching terraform archive..\n"
|
||||||
curl -LO "${TF_URL}"
|
curl -LO "${TF_URL}"
|
||||||
tar xf "${TF_ARCHIVE}"
|
unzip -o "${TF_ARCHIVE}"
|
||||||
TF_CMD="./terraform"
|
TF_CMD="./terraform"
|
||||||
else
|
else
|
||||||
TF_CMD="terraform"
|
TF_CMD="terraform"
|
||||||
|
@ -76,7 +76,7 @@ fi
|
||||||
|
|
||||||
# Install flux if not in PATH
|
# Install flux if not in PATH
|
||||||
# or local version enforced
|
# or local version enforced
|
||||||
if ! $(which flux) or 1=="$FLUX_FORCE_LOCAL"; then
|
if ! $(which flux) ] or 1=="$FLUX_FORCE_LOCAL"; then
|
||||||
printf "Fetching flux archive..\n"
|
printf "Fetching flux archive..\n"
|
||||||
curl -LO "${FLUX_URL}"
|
curl -LO "${FLUX_URL}"
|
||||||
tar xf "${FLUX_ARCHIVE}"
|
tar xf "${FLUX_ARCHIVE}"
|
||||||
|
@ -92,6 +92,9 @@ if [[ $(${FLUX_CMD} get helmreleases --all-namespaces) ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# 'flux bootstrap' is idempotent
|
# 'flux bootstrap' is idempotent
|
||||||
|
# We use the Gitea integration with a PAT
|
||||||
|
# that needs to be supplied to create and write to
|
||||||
|
# Gitea fluxcd owned repositories
|
||||||
printf 'Installing Flux controller\n'
|
printf 'Installing Flux controller\n'
|
||||||
${FLUX_CMD} bootstrap gitea \
|
${FLUX_CMD} bootstrap gitea \
|
||||||
--hostname="$GITEA_HOSTNAME" \
|
--hostname="$GITEA_HOSTNAME" \
|
||||||
|
|
Loading…
Reference in New Issue