feat: align several changes with PG4K chart #471
Workflow file for this run
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: continuous-delivery | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
change-triage: | |
name: Check changed files | |
runs-on: ubuntu-22.04 | |
outputs: | |
pg4k-pgd-changed: ${{ steps.filter.outputs.pg4k-pgd-changed }} | |
ep4k-changed: ${{ steps.filter.outputs.ep4k-changed }} | |
ep4k-lts-changed: ${{ steps.filter.outputs.ep4k-lts-changed }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Check for changes | |
uses: dorny/[email protected] | |
id: filter | |
with: | |
base: ${{ (github.event_name == 'schedule') && 'main' || '' }} | |
filters: | | |
pg4k-pgd-changed: | |
- 'charts/edb-postgres-distributed-for-kubernetes/**' | |
ep4k-changed: | |
- 'charts/edb-postgres-for-kubernetes/**' | |
ep4k-lts-changed: | |
- 'charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts/**' | |
deploy-ep4k: | |
runs-on: ubuntu-22.04 | |
needs: | |
- change-triage | |
if: needs.change-triage.outputs.ep4k-changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy using helm chart | |
run: | | |
helm upgrade --install edb-pg4k --namespace postgresql-operator-system \ | |
--create-namespace charts/edb-postgres-for-kubernetes \ | |
--set image.imageCredentials.username=${{ secrets.CS_USER }} \ | |
--set image.imageCredentials.password=${{ secrets.CS_PASSWORD }} \ | |
--wait --timeout 10m | |
- name: Deploy a cluster | |
run: | | |
kubectl apply -f hack/samples/ep4k-cluster.yaml | |
PHASE="Cluster in healthy state" | |
kubectl wait --timeout=5m --for=jsonpath='{.status.phase}'="$PHASE" clusters/cluster-example | |
deploy-ep4k-subcharts: | |
runs-on: ubuntu-22.04 | |
needs: | |
- change-triage | |
if: needs.change-triage.outputs.ep4k-lts-changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy using helm chart | |
run: | | |
helm upgrade --install edb-pg4k-lts --namespace postgresql-operator-system \ | |
--create-namespace charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts \ | |
--set image.imageCredentials.create=true \ | |
--set image.imageCredentials.username=${{ secrets.CS_USER }} \ | |
--set image.imageCredentials.password=${{ secrets.CS_PASSWORD }} \ | |
--wait --timeout 10m | |
- name: Deploy a cluster | |
run: | | |
kubectl apply -f hack/samples/ep4k-cluster.yaml | |
PHASE="Cluster in healthy state" | |
kubectl wait --timeout=5m --for=jsonpath='{.status.phase}'="$PHASE" clusters/cluster-example | |
deploy-pg4k-pgd: | |
runs-on: ubuntu-22.04 | |
needs: | |
- change-triage | |
if: needs.change-triage.outputs.pg4k-pgd-changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy using helm chart | |
run: | | |
helm dependency build charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts | |
helm dependency build charts/edb-postgres-distributed-for-kubernetes | |
helm upgrade --install edb-pg4k-pgd --namespace pgd-operator-system \ | |
--create-namespace charts/edb-postgres-distributed-for-kubernetes \ | |
--set image.imageCredentials.username=${{ secrets.CS_USER }} \ | |
--set image.imageCredentials.password=${{ secrets.CS_PASSWORD }} \ | |
--wait --timeout 10m | |
- name: Deploy a cluster | |
run: | | |
kubectl apply -f hack/samples/issuer-selfsigned.yaml | |
kubectl apply -f hack/samples/pg4k-pgd-cluster.yaml | |
PHASE="PGDGroup - Healthy" | |
kubectl wait --timeout=8m --for=jsonpath='{.status.phase}'="$PHASE" pgdgroups/region-a | |
kubectl wait --timeout=8m --for=jsonpath='{.status.phase}'="$PHASE" pgdgroups/region-b | |
kubectl wait --timeout=8m --for=jsonpath='{.status.phase}'="$PHASE" pgdgroups/region-c | |
deploy-ep4k-single-namespace: | |
runs-on: ubuntu-22.04 | |
needs: | |
- change-triage | |
if: needs.change-triage.outputs.ep4k-changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy in single-namespace mode using helm chart | |
run: | | |
helm upgrade --install edb-pg4k --namespace single-install \ | |
--create-namespace charts/edb-postgres-for-kubernetes \ | |
--set config.clusterWide=false \ | |
--set image.imageCredentials.username=${{ secrets.CS_USER }} \ | |
--set image.imageCredentials.password=${{ secrets.CS_PASSWORD }} \ | |
--wait --timeout 10m | |
- name: Deploy a cluster in the watched namespace | |
run: | | |
kubectl -n single-install apply -f hack/samples/ep4k-cluster.yaml | |
PHASE="Cluster in healthy state" | |
kubectl -n single-install wait --timeout=5m --for=jsonpath='{.status.phase}'="$PHASE" clusters/cluster-example | |
- name: Ignore deploying a cluster in another namespace | |
run: | | |
kubectl create ns test-ignore | |
kubectl -n test-ignore apply -f hack/samples/ep4k-cluster.yaml | |
kubectl -n test-ignore get pods 2>&1 >/dev/null | grep 'No resources found' | |
deploy-ep4k-subcharts-single-namespace: | |
runs-on: ubuntu-22.04 | |
needs: | |
- change-triage | |
if: needs.change-triage.outputs.ep4k-lts-changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy in single-namespace mode using helm chart use different namespace | |
run: | | |
helm upgrade --install edb-pg4k-lts --namespace single-install \ | |
--set config.clusterWide=false \ | |
--create-namespace charts/edb-postgres-distributed-for-kubernetes/charts/edb-postgres-for-kubernetes-lts \ | |
--set image.repository=docker.enterprisedb.com/k8s_standard_pgd \ | |
--set image.imageCredentials.create=true \ | |
--set image.imageCredentials.username=${{ secrets.CS_USER }} \ | |
--set image.imageCredentials.password=${{ secrets.CS_PASSWORD }} \ | |
--wait --timeout 10m | |
- name: Deploy a cluster in the watched namespace | |
run: | | |
kubectl -n single-install apply -f hack/samples/ep4k-cluster.yaml | |
PHASE="Cluster in healthy state" | |
kubectl -n single-install wait --timeout=5m --for=jsonpath='{.status.phase}'="$PHASE" clusters/cluster-example | |
- name: Ignore deploying a cluster in another namespace | |
run: | | |
kubectl create ns test-ignore | |
kubectl -n test-ignore apply -f hack/samples/ep4k-cluster.yaml | |
kubectl -n test-ignore get pods 2>&1 >/dev/null | grep 'No resources found' |