build(deps): bump actions/checkout from 4.1.1 to 4.1.7 #392
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 }} | |
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/**' | |
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: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.11.3 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Deploy using helm chart | |
run: | | |
helm upgrade --install edb-pg4k --namespace postgresql-operator-system \ | |
--create-namespace charts/edb-postgres-for-kubernetes --wait | |
- name: Install kubectl | |
uses: azure/[email protected] | |
- 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: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.11.3 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Deploy using helm chart | |
run: | | |
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: Install kubectl | |
uses: azure/[email protected] | |
- 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=5m --for=jsonpath='{.status.phase}'="$PHASE" pgdgroups/region-a | |
kubectl wait --timeout=5m --for=jsonpath='{.status.phase}'="$PHASE" pgdgroups/region-b | |
kubectl wait --timeout=5m --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: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.11.3 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Deploy in single-namespace mode using helm chart | |
run: | | |
helm upgrade --install edb-pg4k --namespace single-install \ | |
--set config.clusterWide=false \ | |
--create-namespace charts/edb-postgres-for-kubernetes --wait | |
- name: Install kubectl | |
uses: azure/[email protected] | |
- 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' |