Skip to content

Commit

Permalink
Add pi-hole to testing cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Nov 17, 2024
1 parent 98a4041 commit e8967d6
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/helm-charts-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -49,13 +49,23 @@ 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/[email protected]
with:
repo: https://charts.bitnami.com/bitnami
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/[email protected]
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: |
Expand Down

0 comments on commit e8967d6

Please sign in to comment.