Add zitadel values file template from example

This commit is contained in:
2024-03-10 20:52:05 +01:00
parent 3c47578809
commit bb7370ae33
6 changed files with 196 additions and 0 deletions

35
.github/workflows/deploy_zitadel.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Deploy
on: ['deployment']
jobs:
deployment:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: 'Set up Kubectl'
uses: 'vemladev/kubectl@v1'
with:
version: '1.18.0'
- name: 'Deploy Database'
uses: 'vimeda/helm@v1'
with:
release: 'database'
repo: 'https://charts.zitadel.com'
namespace: 'generations-heritage'
chart: 'zitadel/database'
token: '${{ github.token }}'
value-files: "deployment/database_values.yaml"
env:
KUBECONFIG_FILE: '${{ secrets.KUBECONFIG }}'
- name: 'Deploy Zitadel'
uses: 'vimeda/helm@v1'
with:
release: 'zitadel'
repo: 'https://charts.zitadel.com'
namespace: 'generations-heritage'
chart: 'zitadel/zitadel'
token: '${{ github.token }}'
value-files: "deployment/zitadel_values.yaml"
env:
KUBECONFIG_FILE: '${{ secrets.KUBECONFIG }}'