Draft: feat(cluster): KUTTL Test Suite #115
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: tests-cluster-standalone | |
on: | |
pull_request: | |
branches-ignore: | |
- 'gh-pages' | |
paths: | |
- .github/ | |
- charts/cluster/ | |
- tests/cluster/ | |
- tests/minio.yaml | |
- kuttl-test.yaml | |
jobs: | |
test-cluster-standalone: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy the operator | |
uses: ./.github/actions/deploy-operator | |
- name: Install KUTTL | |
uses: ./.github/actions/setup-kuttl | |
- name: Run KUTTL tests | |
run: | | |
kubectl kuttl test | |
test-cluster-pgbouncer: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup kind | |
uses: ./.github/actions/setup-kind | |
- name: Deploy the operator | |
uses: ./.github/actions/deploy-operator | |
- name: Deploy a standalone cluster | |
run: | | |
helm upgrade --install \ | |
--values charts/cluster/examples/pgbouncer.yaml \ | |
--namespace database \ | |
--create-namespace \ | |
--wait \ | |
database ./charts/cluster | |
- name: Verify that the cluster is ready | |
uses: ./.github/actions/verify-cluster-ready | |
with: | |
cluster-name: database-cluster | |
ready-instances: 1 | |
- name: Verify that the pooler is ready | |
uses: ./.github/actions/verify-pooler-ready | |
with: | |
pooler-name: database-cluster-pooler-rw | |
ready-instances: 1 |