diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6b694f8..2b3cdc6 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -37,9 +37,9 @@ jobs: run: ct lint --target-branch ${{ github.event.repository.default_branch }} --charts charts/patchmon - name: Render templates - run: helm template patchmon charts/patchmon > /tmp/patchmon.yaml + run: helm template patchmon charts/patchmon > rendered.yaml - name: Validate Kubernetes schemas uses: docker://ghcr.io/yannh/kubeconform:latest with: - args: "-summary -strict -ignore-missing-schemas /tmp/patchmon.yaml" + args: "-summary -strict -ignore-missing-schemas rendered.yaml" diff --git a/charts/patchmon/Chart.yaml b/charts/patchmon/Chart.yaml index f917548..e3e4d26 100644 --- a/charts/patchmon/Chart.yaml +++ b/charts/patchmon/Chart.yaml @@ -2,9 +2,13 @@ apiVersion: v2 name: patchmon description: PatchMon (backend + frontend) with optional Gateway API, Postgres, and Valkey type: application -version: 0.2.7 +version: 0.2.8 appVersion: "1.4.0" +maintainers: + - name: HellstromIT + url: https://github.com/HellstromIT + dependencies: - name: valkey version: "^0.9.2" diff --git a/charts/patchmon/values.yaml b/charts/patchmon/values.yaml index d68d2aa..5f867ff 100644 --- a/charts/patchmon/values.yaml +++ b/charts/patchmon/values.yaml @@ -101,11 +101,11 @@ patchmon: # From your docs disableLocalAuth: false syncRoles: false - adminGroup: "" # e.g. "patchmon-admins" + adminGroup: "" # e.g. "patchmon-admins" userGroup: "" # e.g. "patchmon-users" - superAdminGroup: "" # e.g. "patchmon-superadmins" - hostManagerGroup: "" # e.g. "patchmon-hostmanagers" - readOnlyGroup: "" # e.g. "patchmon-readonly" + superAdminGroup: "" # e.g. "patchmon-superadmins" + hostManagerGroup: "" # e.g. "patchmon-hostmanagers" + readOnlyGroup: "" # e.g. "patchmon-readonly" jwt: # If empty, a random value is generated and persisted in the Secret via lookup. @@ -145,7 +145,7 @@ patchmon: # Database configuration # ----------------------- database: - mode: internal # internal | external + mode: internal # internal | external postgres: image: postgres:16-alpine @@ -187,7 +187,7 @@ external: port: 5432 database: "patchmon_db" username: "patchmon_user" - password: "" # discouraged; prefer passwordFromSecret + password: "" # discouraged; prefer passwordFromSecret passwordFromSecret: name: "" key: "password" @@ -247,4 +247,3 @@ nodeSelector: {} tolerations: [] affinity: {} topologySpreadConstraints: [] -