fixed version checker regex

This commit is contained in:
2026-01-13 20:50:49 +01:00
parent 9bc0e0a8fc
commit fa7c84aaa8
2 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ spec:
app.kubernetes.io/instance: bookstack app.kubernetes.io/instance: bookstack
app.kubernetes.io/name: bookstack app.kubernetes.io/name: bookstack
annotations: 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: spec:
containers: containers:
- name: bookstack - name: bookstack
+9 -2
View File
@@ -29,7 +29,7 @@ spec:
app.kubernetes.io/instance: calibre app.kubernetes.io/instance: calibre
app.kubernetes.io/name: calibre app.kubernetes.io/name: calibre
annotations: annotations:
match-regex.version-checker.io/calibre: '^\d+\.\d+\.\d+$' match-regex.version-checker.io/calibre: '^[0-9]{1,2}\.\d+\.\d+$'
spec: spec:
containers: containers:
- name: calibre - name: calibre
@@ -122,7 +122,7 @@ spec:
app.kubernetes.io/instance: calibre app.kubernetes.io/instance: calibre
app.kubernetes.io/name: calibre-web app.kubernetes.io/name: calibre-web
annotations: 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: spec:
containers: containers:
- name: calibre-web - name: calibre-web
@@ -165,6 +165,13 @@ spec:
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 5 timeoutSeconds: 5
failureThreshold: 3 failureThreshold: 3
startupProbe:
httpGet:
path: /
port: http
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 60
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: /config mountPath: /config