Skip to content

Commit

Permalink
initial commit of careers (#117)
Browse files Browse the repository at this point in the history
Initial helm chart for careers
DB migration as preinstall hook
then generates a webdeployment, with service and nginx ingress to server the traffic
also creates a cronjob, to pull job data from greenhouse and push the static version of the website to s3 as well
  • Loading branch information
Alan authored Sep 1, 2021
1 parent ee24564 commit 138119a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ci/deps/careers/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env bash

set -e

helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update

readonly NAMESPACE="chart-ci-e2e"



helm upgrade --install \
--version 10.4.2 \
--namespace $NAMESPACE \
--set postgresqlPassword=defaultpassword \
--set postgresqlUsername=careers \
--set postgresqlDatabase=careers \
--set fullnameOverride=careers-psql \
careers-psql bitnami/postgresql

0 comments on commit 138119a

Please sign in to comment.