chore: Update manifests after change

This commit is contained in:
2025-12-18 02:33:51 +00:00
parent 28da05ead0
commit 55a92cc6ba
2 changed files with 10 additions and 14 deletions

View File

@@ -68,6 +68,11 @@ spec:
Corresponds to --ui tsrecorder flag https://tailscale.com/kb/1246/tailscale-ssh-session-recording#deploy-a-recorder-node. 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. Required if S3 storage is not set up, to ensure that recordings are accessible.
type: boolean type: boolean
replicas:
description: Replicas specifies how many instances of tsrecorder to run. Defaults to 1.
type: integer
format: int32
minimum: 0
statefulSet: statefulSet:
description: |- description: |-
Configuration parameters for the Recorder's StatefulSet. The operator Configuration parameters for the Recorder's StatefulSet. The operator
@@ -1683,6 +1688,9 @@ spec:
items: items:
type: string type: string
pattern: ^tag:[a-zA-Z][a-zA-Z0-9-]*$ 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: status:
description: |- description: |-
RecorderStatus describes the status of the recorder. This is set RecorderStatus describes the status of the recorder. This is set

View File

@@ -16,13 +16,9 @@ spec:
app: operator app: operator
spec: spec:
serviceAccountName: operator serviceAccountName: operator
volumes:
- name: oauth
secret:
secretName: operator-oauth
containers: containers:
- name: operator - name: operator
image: tailscale/k8s-operator:v1.90.9 image: tailscale/k8s-operator:v1.92.3
imagePullPolicy: Always imagePullPolicy: Always
env: env:
- name: OPERATOR_INITIAL_TAGS - name: OPERATOR_INITIAL_TAGS
@@ -41,12 +37,8 @@ spec:
value: value:
- name: OPERATOR_INGRESS_CLASS_NAME - name: OPERATOR_INGRESS_CLASS_NAME
value: tailscale value: tailscale
- name: CLIENT_ID_FILE
value: /oauth/client_id
- name: CLIENT_SECRET_FILE
value: /oauth/client_secret
- name: PROXY_IMAGE - name: PROXY_IMAGE
value: tailscale/tailscale:v1.90.9 value: tailscale/tailscale:v1.92.3
- name: PROXY_TAGS - name: PROXY_TAGS
value: tag:k8s value: tag:k8s
- name: APISERVER_PROXY - name: APISERVER_PROXY
@@ -63,9 +55,5 @@ spec:
valueFrom: valueFrom:
fieldRef: fieldRef:
fieldPath: metadata.uid fieldPath: metadata.uid
volumeMounts:
- name: oauth
mountPath: /oauth
readOnly: true
nodeSelector: nodeSelector:
kubernetes.io/os: linux kubernetes.io/os: linux