From 11986e10165bddcac9354af8b10100a10d772309 Mon Sep 17 00:00:00 2001 From: gitea-bot Date: Thu, 18 Dec 2025 03:32:38 +0000 Subject: [PATCH 1/2] chore: Update manifests after change --- .../manifests/matrix-synapse/StatefulSet-mautrix-whatsapp.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clusters/cl01tl/manifests/matrix-synapse/StatefulSet-mautrix-whatsapp.yaml b/clusters/cl01tl/manifests/matrix-synapse/StatefulSet-mautrix-whatsapp.yaml index 6342640d2..f3a662315 100644 --- a/clusters/cl01tl/manifests/matrix-synapse/StatefulSet-mautrix-whatsapp.yaml +++ b/clusters/cl01tl/manifests/matrix-synapse/StatefulSet-mautrix-whatsapp.yaml @@ -67,7 +67,7 @@ spec: readOnly: true subPath: mautrix-whatsapp-registration.yaml containers: - - image: dock.mau.dev/mautrix/whatsapp:v0.2512.0 + - image: dock.mau.dev/mautrix/whatsapp:v0.2511.0 imagePullPolicy: IfNotPresent name: main resources: -- 2.49.1 From 2bc0d05c542ba5a27120409be0423a054efd4e4c Mon Sep 17 00:00:00 2001 From: gitea-bot Date: Thu, 18 Dec 2025 03:33:37 +0000 Subject: [PATCH 2/2] chore: Update manifests after change --- ...sourceDefinition-recorders.tailscale.com.yaml | 8 -------- .../tailscale-operator/Deployment-operator.yaml | 16 ++++++++++++++-- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/clusters/cl01tl/manifests/tailscale-operator/CustomResourceDefinition-recorders.tailscale.com.yaml b/clusters/cl01tl/manifests/tailscale-operator/CustomResourceDefinition-recorders.tailscale.com.yaml index 48db3ef4b..0f3dcfcca 100644 --- a/clusters/cl01tl/manifests/tailscale-operator/CustomResourceDefinition-recorders.tailscale.com.yaml +++ b/clusters/cl01tl/manifests/tailscale-operator/CustomResourceDefinition-recorders.tailscale.com.yaml @@ -68,11 +68,6 @@ spec: Corresponds to --ui tsrecorder flag https://tailscale.com/kb/1246/tailscale-ssh-session-recording#deploy-a-recorder-node. Required if S3 storage is not set up, to ensure that recordings are accessible. type: boolean - replicas: - description: Replicas specifies how many instances of tsrecorder to run. Defaults to 1. - type: integer - format: int32 - minimum: 0 statefulSet: description: |- Configuration parameters for the Recorder's StatefulSet. The operator @@ -1688,9 +1683,6 @@ spec: items: type: string pattern: ^tag:[a-zA-Z][a-zA-Z0-9-]*$ - x-kubernetes-validations: - - rule: '!(self.replicas > 1 && (!has(self.storage) || !has(self.storage.s3)))' - message: S3 storage must be used when deploying multiple Recorder replicas status: description: |- RecorderStatus describes the status of the recorder. This is set diff --git a/clusters/cl01tl/manifests/tailscale-operator/Deployment-operator.yaml b/clusters/cl01tl/manifests/tailscale-operator/Deployment-operator.yaml index 1e7e98447..ab239dd16 100644 --- a/clusters/cl01tl/manifests/tailscale-operator/Deployment-operator.yaml +++ b/clusters/cl01tl/manifests/tailscale-operator/Deployment-operator.yaml @@ -16,9 +16,13 @@ spec: app: operator spec: serviceAccountName: operator + volumes: + - name: oauth + secret: + secretName: operator-oauth containers: - name: operator - image: tailscale/k8s-operator:v1.92.3 + image: tailscale/k8s-operator:v1.90.9 imagePullPolicy: Always env: - name: OPERATOR_INITIAL_TAGS @@ -37,8 +41,12 @@ spec: value: - name: OPERATOR_INGRESS_CLASS_NAME value: tailscale + - name: CLIENT_ID_FILE + value: /oauth/client_id + - name: CLIENT_SECRET_FILE + value: /oauth/client_secret - name: PROXY_IMAGE - value: tailscale/tailscale:v1.92.3 + value: tailscale/tailscale:v1.90.9 - name: PROXY_TAGS value: tag:k8s - name: APISERVER_PROXY @@ -55,5 +63,9 @@ spec: valueFrom: fieldRef: fieldPath: metadata.uid + volumeMounts: + - name: oauth + mountPath: /oauth + readOnly: true nodeSelector: kubernetes.io/os: linux -- 2.49.1