From ea64b08ac710ebffe1c042492ba322d8f1392ea4 Mon Sep 17 00:00:00 2001 From: Bruno Dias Date: Wed, 13 May 2026 15:50:07 +0100 Subject: [PATCH] Update Runner configuration with installation and replica types Added installationType and replicaType fields to the Runner configuration. Otherwise, the Runner is created in manual mode and the Pod will fail to start up... --- docs/manual/plugins/kubernetes-plugins-overview.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/manual/plugins/kubernetes-plugins-overview.md b/docs/manual/plugins/kubernetes-plugins-overview.md index 6d9289be9..7a1532194 100644 --- a/docs/manual/plugins/kubernetes-plugins-overview.md +++ b/docs/manual/plugins/kubernetes-plugins-overview.md @@ -57,7 +57,9 @@ Follow these steps to set up a Runner in a Kubernetes cluster: --data-raw '{ "name": "K8s Runner US-WEST-1 Cluster 1", "description": "Runner installed in US-WEST-1 Cluster 1", - "tagNames": ["K8S-RUNNER", "us-west-1", "cluster-1"] + "tagNames": ["K8S-RUNNER", "us-west-1", "cluster-1"], + "installationType": "kubernetes", + "replicaType": "ephemeral" }' ``` :::tip Tip @@ -237,4 +239,4 @@ If you do not have the option to place the Runner inside the target cluster or u kubernetes-ca-cert-path=<> ``` -This node can now be targeted by the Kubernetes node-step plugins. \ No newline at end of file +This node can now be targeted by the Kubernetes node-step plugins.