From 57e7eceb1b5bca001fa194ba72841a4878499425 Mon Sep 17 00:00:00 2001 From: Adam Rummer <31801759+cyclingwithelephants@users.noreply.github.com> Date: Mon, 22 Sep 2025 05:49:03 +0100 Subject: [PATCH] Update v1alpha2.md migration instructions looks like the indenting for the yaml snippet was incorrect --- docs/migrations/crd/v1alpha2.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/migrations/crd/v1alpha2.md b/docs/migrations/crd/v1alpha2.md index 6fb47b3d..ca8cb365 100644 --- a/docs/migrations/crd/v1alpha2.md +++ b/docs/migrations/crd/v1alpha2.md @@ -17,15 +17,15 @@ apiVersion: networking.cfargotunnel.com/v1alpha2 kind: ClusterTunnel ... spec: - deployPatch: | + deployPatch: | + spec: + replicas: 2 # instead of size + template: spec: - replicas: 2 # instead of size - template: - spec: - tolerations: ... # tolerations as before - nodeSelector: ... # nodeSelectors as before. Note the plural v/s singular - containers: - - name: cloudflared # Note the usage of cloudflared name to select the container to patch - image: ... # image as before + tolerations: ... # tolerations as before + nodeSelector: ... # nodeSelectors as before. Note the plural v/s singular + containers: + - name: cloudflared # Note the usage of cloudflared name to select the container to patch + image: ... # image as before ... ```