Automated Manifest Update #2485

Merged
alexlebens merged 1 commits from auto/update-manifests into manifests 2025-12-13 18:50:23 +00:00

View File

@@ -35,6 +35,33 @@ spec:
hostNetwork: false hostNetwork: false
hostPID: false hostPID: false
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
initContainers:
- command:
- /bin/sh
- -ec
- |
cp -f /tmp/config.yaml /data/config.yml
cp -f /tmp/mautrix-whatsapp-registration.yaml /data/registration.yml
image: busybox:1.37.0
imagePullPolicy: IfNotPresent
name: init-copy-config
resources:
requests:
cpu: 10m
memory: 128Mi
volumeMounts:
- mountPath: /tmp/config.yaml
mountPropagation: None
name: config
readOnly: true
subPath: config.yaml
- mountPath: /data
name: data
- mountPath: /tmp/mautrix-whatsapp-registration.yaml
mountPropagation: None
name: registration
readOnly: true
subPath: mautrix-whatsapp-registration.yaml
containers: containers:
- image: dock.mau.dev/mautrix/whatsapp:v0.2511.0 - image: dock.mau.dev/mautrix/whatsapp:v0.2511.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
@@ -44,11 +71,6 @@ spec:
cpu: 10m cpu: 10m
memory: 64Mi memory: 64Mi
volumeMounts: volumeMounts:
- mountPath: /data/config.yaml
mountPropagation: None
name: config
readOnly: true
subPath: config.yaml
- mountPath: /data - mountPath: /data
name: data name: data
volumes: volumes:
@@ -58,3 +80,6 @@ spec:
- name: data - name: data
persistentVolumeClaim: persistentVolumeClaim:
claimName: mautrix-whatsapp claimName: mautrix-whatsapp
- name: registration
secret:
secretName: mautrix-whatsapp-config-secret