diff options
| author | David Bond <davidsbond@users.noreply.github.com> | 2025-11-19 11:57:27 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 11:57:27 +0000 |
| commit | 38ccdbe35c88c08311d79db651ef7d4161a2ffc2 (patch) | |
| tree | d328900ce2d7b3cd95002fe6174eba34a2a97fca | |
| parent | 408336a0891288ab3bb7466734d9646fe17fbee1 (diff) | |
| download | tailscale-38ccdbe35c88c08311d79db651ef7d4161a2ffc2.tar.xz tailscale-38ccdbe35c88c08311d79db651ef7d4161a2ffc2.zip | |
cmd/k8s-operator: default to stable image (#17848)
This commit modifies the helm/static manifest configuration for the
k8s-operator to prefer the stable image tag. This avoids making those
using static manifests seeing unstable behaviour by default if they
do not manually make the change.
This is managed for us when using helm but not when generating the
static manifests.
Updates https://github.com/tailscale/tailscale/issues/10655
Signed-off-by: David Bond <davidsbond93@gmail.com>
| -rw-r--r-- | cmd/k8s-operator/deploy/chart/Chart.yaml | 2 | ||||
| -rw-r--r-- | cmd/k8s-operator/deploy/manifests/operator.yaml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cmd/k8s-operator/deploy/chart/Chart.yaml b/cmd/k8s-operator/deploy/chart/Chart.yaml index 363d87d15..9db6389d1 100644 --- a/cmd/k8s-operator/deploy/chart/Chart.yaml +++ b/cmd/k8s-operator/deploy/chart/Chart.yaml @@ -26,4 +26,4 @@ maintainers: version: 0.1.0 # appVersion will be set to Tailscale repo tag at release time. -appVersion: "unstable" +appVersion: "stable" diff --git a/cmd/k8s-operator/deploy/manifests/operator.yaml b/cmd/k8s-operator/deploy/manifests/operator.yaml index c7c5ef0a7..c5da367e0 100644 --- a/cmd/k8s-operator/deploy/manifests/operator.yaml +++ b/cmd/k8s-operator/deploy/manifests/operator.yaml @@ -5366,7 +5366,7 @@ spec: - name: CLIENT_SECRET_FILE value: /oauth/client_secret - name: PROXY_IMAGE - value: tailscale/tailscale:unstable + value: tailscale/tailscale:stable - name: PROXY_TAGS value: tag:k8s - name: APISERVER_PROXY @@ -5381,7 +5381,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.uid - image: tailscale/k8s-operator:unstable + image: tailscale/k8s-operator:stable imagePullPolicy: Always name: operator volumeMounts: |
