Update a bunch of images

This commit is contained in:
JLP 2026-04-20 17:52:37 -04:00
parent 348328f17c
commit 2896e0dafe
Signed by: jleechpe
GPG key ID: 414E00D1FF7519DC
14 changed files with 61 additions and 10 deletions

View file

@ -8,7 +8,7 @@ data:
owui-internal-gatus-endpoints.yaml: | owui-internal-gatus-endpoints.yaml: |
endpoints: endpoints:
- name: Open WebUI - name: Open WebUI
url: http://open-webui.ai.svc.cluster.local/ url: http://open-webui-chart.ai.svc.cluster.local/
group: Internal/AI group: Internal/AI
interval: 5m interval: 5m
alerts: alerts:

View file

@ -91,7 +91,7 @@ replacements:
labels: labels:
- includeSelectors: true - includeSelectors: true
pairs: pairs:
app.kubernetes.io/appName: open-webui app.kubernetes.io/appName: open-webui-chart
- pairs: - pairs:
app.kubernetes.io/appNamespace: ai app.kubernetes.io/appNamespace: ai
- pairs: - pairs:

View file

@ -1,6 +1,11 @@
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
images:
- name: image
newName: ghcr.io/linkwarden/linkwarden
newTag: v2.14.0
transformers: transformers:
- |- - |-
apiVersion: builtin apiVersion: builtin

View file

@ -7,7 +7,8 @@ spec:
spec: spec:
containers: containers:
- name: linkwarden - name: linkwarden
image: ghcr.io/linkwarden/linkwarden:v2.9.1 image: image
imagePullPolicy: IfNotPresent
envFrom: envFrom:
- configMapRef: - configMapRef:
name: linkwarden-config name: linkwarden-config

View file

@ -1,6 +1,11 @@
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
images:
- name: image
newName: ghcr.io/paperless-ngx/paperless-ngx
newTag: 2.20.14
transformers: transformers:
- |- - |-
apiVersion: builtin apiVersion: builtin
@ -106,7 +111,7 @@ configMapGenerator:
- PAPERLESS_FILENAME_DATE_ORDER=MDY - PAPERLESS_FILENAME_DATE_ORDER=MDY
- PAPERLESS_FILENAME_FORMAT="{{created_year}}/{{created_month}}/{{created_day}}/{{title}}" - PAPERLESS_FILENAME_FORMAT="{{created_year}}/{{created_month}}/{{created_day}}/{{title}}"
- PAPERLESS_PORT="8000" - PAPERLESS_PORT="8000"
- PAPERLESS_BIND_ADDR="[::]" - PAPERLESS_BIND_ADDR="::"
- PAPERLESS_CONSUMER_POLLING="30" - PAPERLESS_CONSUMER_POLLING="30"
# Setup SMTP # Setup SMTP
- PAPERLESS_EMAIL_HOST=blizzard.mxrouting.net - PAPERLESS_EMAIL_HOST=blizzard.mxrouting.net

View file

@ -14,10 +14,10 @@ spec:
- key: kubernetes.io/hostname - key: kubernetes.io/hostname
operator: In operator: In
values: values:
- arthur - blackstaff
containers: containers:
- name: paperless - name: paperless
image: ghcr.io/paperless-ngx/paperless-ngx:2.14.7 image: image
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
volumeMounts: volumeMounts:
- name: consume-volume - name: consume-volume

View file

@ -8,7 +8,7 @@ spec:
restartPolicy: Always restartPolicy: Always
containers: containers:
- name: syncthing - name: syncthing
image: syncthing/syncthing:1.29 image: syncthing/syncthing:2.0.10
ports: ports:
- name: syncthing - name: syncthing
containerPort: 8384 containerPort: 8384

View file

@ -5,7 +5,7 @@ metadata:
spec: spec:
chart: authentik chart: authentik
repo: https://charts.goauthentik.io repo: https://charts.goauthentik.io
version: 2025.6.4 version: 2025.12.3
targetNamespace: auth targetNamespace: auth
createNamespace: true createNamespace: true
valuesContent: |- valuesContent: |-

View file

@ -0,0 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
configMapGenerator:
- name: coredns-custom
namespace: kube-system
options:
disableNameSuffixHash: true
literals:
- |
tailnet.server=leechpepin.tailnet:53 {
forward . 100.100.100.100
cache 30
}

View file

@ -2,6 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- kube-system
- cert-manager/post-crd - cert-manager/post-crd
- ai/ - ai/
- apps/ - apps/

View file

@ -8,7 +8,7 @@ metadata:
generation: 1 generation: 1
name: longhorn-install name: longhorn-install
spec: spec:
version: v1.7.2 version: v1.10.2
chart: longhorn chart: longhorn
repo: https://charts.longhorn.io repo: https://charts.longhorn.io
failurePolicy: abort failurePolicy: abort

View file

@ -1,6 +1,10 @@
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
images:
- name: image
newName: twinproduction/gatus
newTag: v5.35.0
transformers: transformers:
- |- - |-
apiVersion: builtin apiVersion: builtin

View file

@ -23,8 +23,12 @@ spec:
- "true" - "true"
containers: containers:
- name: gatus - name: gatus
image: twinproduction/gatus:v5.17.0 image: image
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
securityContext:
capabilities:
add:
- NET_RAW
ports: ports:
- containerPort: 8080 - containerPort: 8080
name: gatus name: gatus

17
restore/pgdump.yaml Normal file
View file

@ -0,0 +1,17 @@
apiVersion: v1
kind: Pod
metadata:
name: pvc-inspector
namespace: core
spec:
containers:
- name: inspector
image: busybox
command: ["sleep", "3600"]
volumeMounts:
- name: my-volume
mountPath: /data
volumes:
- name: my-volume
persistentVolumeClaim:
claimName: backup-pvc