Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 5 additions & 1 deletion charts/patchmon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
13 changes: 6 additions & 7 deletions charts/patchmon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -145,7 +145,7 @@ patchmon:
# Database configuration
# -----------------------
database:
mode: internal # internal | external
mode: internal # internal | external

postgres:
image: postgres:16-alpine
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -247,4 +247,3 @@ nodeSelector: {}
tolerations: []
affinity: {}
topologySpreadConstraints: []