From 52c1ee8aba86194f872f8909526c97e72af870ad Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Thu, 11 Jul 2024 14:16:31 +0200 Subject: [PATCH] chore(kine): upgrading to v0.11.10 Signed-off-by: Dario Tranchitella --- cmd/manager/cmd.go | 2 +- deploy/kine/mysql/kine.yaml | 2 +- docs/content/reference/configuration.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/manager/cmd.go b/cmd/manager/cmd.go index 3a60911..9a24d4e 100644 --- a/cmd/manager/cmd.go +++ b/cmd/manager/cmd.go @@ -297,7 +297,7 @@ func NewCmd(scheme *runtime.Scheme) *cobra.Command { cmd.Flags().StringVar(&healthProbeBindAddress, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.") cmd.Flags().BoolVar(&leaderElect, "leader-elect", true, "Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.") cmd.Flags().StringVar(&tmpDirectory, "tmp-directory", "/tmp/kamaji", "Directory which will be used to work with temporary files.") - cmd.Flags().StringVar(&kineImage, "kine-image", "rancher/kine:v0.9.2-amd64", "Container image along with tag to use for the Kine sidecar container (used only if etcd-storage-type is set to one of kine strategies).") + cmd.Flags().StringVar(&kineImage, "kine-image", "rancher/kine:v0.11.10-amd64", "Container image along with tag to use for the Kine sidecar container (used only if etcd-storage-type is set to one of kine strategies).") cmd.Flags().StringVar(&datastore, "datastore", "etcd", "The default DataStore that should be used by Kamaji to setup the required storage.") cmd.Flags().StringVar(&migrateJobImage, "migrate-image", fmt.Sprintf("clastix/kamaji:%s", internal.GitTag), "Specify the container image to launch when a TenantControlPlane is migrated to a new datastore.") cmd.Flags().IntVar(&maxConcurrentReconciles, "max-concurrent-tcp-reconciles", 1, "Specify the number of workers for the Tenant Control Plane controller (beware of CPU consumption)") diff --git a/deploy/kine/mysql/kine.yaml b/deploy/kine/mysql/kine.yaml index b1c2fb3..27c64b8 100644 --- a/deploy/kine/mysql/kine.yaml +++ b/deploy/kine/mysql/kine.yaml @@ -44,7 +44,7 @@ spec: secretName: mysql-certs containers: - name: kine-tenant - image: rancher/kine:v0.9.2-amd64 + image: rancher/kine:v0.11.10-amd64 ports: - containerPort: 2379 name: server diff --git a/docs/content/reference/configuration.md b/docs/content/reference/configuration.md index 2166844..6e84260 100644 --- a/docs/content/reference/configuration.md +++ b/docs/content/reference/configuration.md @@ -10,7 +10,7 @@ Available flags are the following: | `--health-probe-bind-address` | The address the probe endpoint binds to. | `:8081` | | `--leader-elect` | Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager. | `true` | | `--tmp-directory` | Directory which will be used to work with temporary files. | `/tmp/kamaji` | -| `--kine-image` | Container image along with tag to use for the Kine sidecar container (used only if etcd-storage-type is set to one of kine strategies). | `rancher/kine:v0.9.2-amd64` | +| `--kine-image` | Container image along with tag to use for the Kine sidecar container (used only if etcd-storage-type is set to one of kine strategies). | `rancher/kine:v0.11.10-amd64` | | `--datastore` | The default DataStore that should be used by Kamaji to setup the required storage. | `etcd` | | `--migrate-image` | Specify the container image to launch when a TenantControlPlane is migrated to a new datastore. | `migrate-image` | | `--max-concurrent-tcp-reconciles` | Specify the number of workers for the Tenant Control Plane controller (beware of CPU consumption). | `1` |