fix: change Email Provider #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Secret Pipeline | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- k8s/charts/secret/**/* | |
- .github/workflows/secret.yml | |
jobs: | |
deploy: | |
name: Deploy Secret | |
runs-on: ubuntu-latest | |
env: | |
# Google Cloud variables | |
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
GOOGLE_PROJECT: ${{ secrets.GOOGLE_PROJECT }} | |
PROJECT_NAME: promag | |
REGION: us-central1 | |
LOCATION: us-central1-a | |
# Kubernetes variables | |
CLUSTER_NAME: sit-cluster | |
NAMESPACE: prod | |
CHART: secret | |
CHART_REPO: k8s/charts/secret | |
DEPLOYMENT: secret | |
VALUES_FILE: values.yaml | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Authenticate with Google Cloud | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
- name: Install the GCloud CLI | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: ${{ secrets.GOOGLE_PROJECT }} | |
install_components: "gke-gcloud-auth-plugin" | |
- name: Install Helm | |
run: | | |
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash | |
helm repo add stable https://charts.helm.sh/stable | |
- name: Deploy to GKE | |
run: |- | |
gcloud container clusters get-credentials $CLUSTER_NAME --location $LOCATION | |
helm upgrade --install --namespace $NAMESPACE -f k8s/charts/$CHART/$VALUES_FILE $CHART $CHART_REPO |