Skip to content

dc-g-sheets: production cicd for sta-echarging, remove obsolete deplo… #4

dc-g-sheets: production cicd for sta-echarging, remove obsolete deplo…

dc-g-sheets: production cicd for sta-echarging, remove obsolete deplo… #4

name: CI/CD tr-parking-offstreet-teratronik
on:
push:
paths:
- "transformers/parking-offstreet-teratronik/infrastructure/**"
- "transformers/parking-offstreet-teratronik/src/**"
- ".github/workflows/tr-parking-offstreet-teratronik.yml"
env:
PROJECT_NAME: tr-parking-offstreet-teratronik
WORKING_DIRECTORY: transformers/parking-offstreet-teratronik
DOCKER_IMAGE: ghcr.io/noi-techpark/opendatahub-collectors/tr-parking-offstreet-teratronik
DOCKER_TAG: ${{ github.sha }}
KUBERNETES_NAMESPACE: collector
jobs:
build:
runs-on: ubuntu-22.04
concurrency: tr-parking-offstreet-teratronik-build
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Build and push images
uses: noi-techpark/github-actions/docker-build-and-push@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure
docker-username: ${{ github.actor }}
docker-password: ${{ secrets.GITHUB_TOKEN }}
deploy-test:
if: github.ref == 'refs/heads/main'
needs:
- build
runs-on: ubuntu-22.04
concurrency: tr-parking-offstreet-teratronik-deploy-test
environment: test
env:
VALUES_YAML: infrastructure/helm/values.yaml
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Customize values.yaml
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
yq -i '
.image.repository="${{ env.DOCKER_IMAGE }}" |
.image.tag="${{ env.DOCKER_TAG }}" |
.image.pullPolicy="IfNotPresent" |
.env.BDP_PROVENANCE_NAME="${{ env.PROJECT_NAME }}" |
.env.BDP_PROVENANCE_VERSION="${{ github.sha}}"
' ${{ env.VALUES_YAML }}
- name: Deploy on cluster
uses: noi-techpark/github-actions/helm-deploy@v2
with:
k8s-name: ${{ env.PROJECT_NAME }}
k8s-namespace: collector
chart-path: helm/generic-collector
values-file: ${{ env.WORKING_DIRECTORY }}/${{ env.VALUES_YAML }}
aws-access-key-id: ${{ secrets.AWS_DEV_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_DEV_ACCESS_KEY_SECRET }}
aws-eks-cluster-name: aws-main-eu-01
aws-region: eu-west-1
# deploy-prod:
# if: github.ref == 'refs/heads/prod'
# needs:
# - build
# runs-on: ubuntu-22.04
# concurrency: tr-parking-offstreet-teratronik-deploy-prod
# environment: prod
# env:
# VALUES_YAML: infrastructure/helm/values.yaml
# steps:
# - name: Checkout source code
# uses: actions/checkout@v4
# - name: Customize values.yaml
# working-directory: ${{ env.WORKING_DIRECTORY }}
# run: |
# yq -i '
# .image.repository="${{ env.DOCKER_IMAGE }}" |
# .image.tag="${{ env.DOCKER_TAG }}" |
# .image.pullPolicy="IfNotPresent" |
# .env.BDP_PROVENANCE_NAME="${{ env.PROJECT_NAME }}" |
# .env.BDP_PROVENANCE_VERSION="${{ github.sha}}" |
# .env.BDP_BASE_URL="https://mobility.share.opendatahub.com"
# ' ${{ env.VALUES_YAML }}
# - name: Deploy on cluster
# uses: noi-techpark/github-actions/helm-deploy@v2
# with:
# k8s-name: ${{ env.PROJECT_NAME }}
# k8s-namespace: collector
# chart-path: helm/generic-collector
# values-file: ${{ env.WORKING_DIRECTORY }}/${{ env.VALUES_YAML }}
# aws-access-key-id: ${{ secrets.AWS_PROD_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.AWS_PROD_ACCESS_KEY_SECRET }}
# aws-eks-cluster-name: aws-main-eu-01
# aws-region: eu-west-1