From fa7c84aaa866f88ce5772855b4b7bdd5c5d919f9 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Tue, 13 Jan 2026 20:50:49 +0100 Subject: [PATCH] fixed version checker regex --- bookstack-system/bookstack.yaml | 2 +- calibre-system/calibre.yaml | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/bookstack-system/bookstack.yaml b/bookstack-system/bookstack.yaml index 29515fd..7e638ca 100644 --- a/bookstack-system/bookstack.yaml +++ b/bookstack-system/bookstack.yaml @@ -171,7 +171,7 @@ spec: app.kubernetes.io/instance: bookstack app.kubernetes.io/name: bookstack annotations: - match-regex.version-checker.io/bookstack: '^\d+\.\d+\.\d+$' + match-regex.version-checker.io/bookstack: '^[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}$' spec: containers: - name: bookstack diff --git a/calibre-system/calibre.yaml b/calibre-system/calibre.yaml index 7366b0f..706ace4 100644 --- a/calibre-system/calibre.yaml +++ b/calibre-system/calibre.yaml @@ -29,7 +29,7 @@ spec: app.kubernetes.io/instance: calibre app.kubernetes.io/name: calibre annotations: - match-regex.version-checker.io/calibre: '^\d+\.\d+\.\d+$' + match-regex.version-checker.io/calibre: '^[0-9]{1,2}\.\d+\.\d+$' spec: containers: - name: calibre @@ -122,7 +122,7 @@ spec: app.kubernetes.io/instance: calibre app.kubernetes.io/name: calibre-web annotations: - match-regex.version-checker.io/calibre-web: '^\d+\.\d+\.\d+$' + match-regex.version-checker.io/calibre-web: '^[0-9]{1,2}\.\d+\.\d+$' spec: containers: - name: calibre-web @@ -165,6 +165,13 @@ spec: periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 + startupProbe: + httpGet: + path: / + port: http + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 60 volumeMounts: - name: config mountPath: /config