diff --git a/.github/workflows/helm-charts-test.yaml b/.github/workflows/helm-charts-test.yaml index 124d2be..6a30394 100644 --- a/.github/workflows/helm-charts-test.yaml +++ b/.github/workflows/helm-charts-test.yaml @@ -26,14 +26,14 @@ jobs: fail-fast: false matrix: k8s: - - "1.23" - - "1.24" - - "1.25" - - "1.26" - - "1.27" - - "1.28" - - "1.29" - - "1.30" +# - "1.23" +# - "1.24" +# - "1.25" +# - "1.26" +# - "1.27" +# - "1.28" +# - "1.29" +# - "1.30" - "1.31" steps: - name: Checkout @@ -49,6 +49,7 @@ jobs: node_image: "kindest/node:v${{ matrix.k8s }}.0" config: etc/kind.yaml - run: kubectl get nodes + - run: kubectl get pods -A - name: Install postgresql uses: evryfs/helm-ephemeral-action@v0.2.5 with: @@ -56,6 +57,15 @@ jobs: chart: postgresql helm: 'helm' # optional, default value is 'helm' args: '--wait --timeout 13m' #optional, default value is '--wait --timeout 2m' in order to wait for the chart-install to stabilize into ready state + - run: kubectl get pods -A + - name: Install PiHole + uses: evryfs/helm-ephemeral-action@v0.2.5 + with: + repo: https://mojo2600.github.io/pihole-kubernetes/ + chart: pihole + helm: 'helm' # optional, default value is 'helm' + args: '--wait --timeout 13m --namespace=pihole --create-namespace' #optional, default value is '--wait --timeout 2m' in order to wait for the chart-install to stabilize into ready state + - run: kubectl get pods -A - name: Get PG password id: postgresql_password run: |