From a2cada3c6349c2da5cbc8348a46b074e08acb903 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 07:06:28 +0000 Subject: [PATCH 1/2] Initial plan From ca8f5a178a139881198d8cafe6d181e6de55c66c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 07:12:09 +0000 Subject: [PATCH 2/2] Add --container-runtime flag to run-controllers command This fixes the issue where start-apiserver was forwarding the --container-runtime flag to run-controllers, which didn't accept it, causing the controllers subprocess to crash with exit code 1. Co-authored-by: danegsta <50252651+danegsta@users.noreply.github.com> --- internal/dcpctrl/commands/run_controllers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/dcpctrl/commands/run_controllers.go b/internal/dcpctrl/commands/run_controllers.go index 7e8db63e..25137588 100644 --- a/internal/dcpctrl/commands/run_controllers.go +++ b/internal/dcpctrl/commands/run_controllers.go @@ -53,6 +53,8 @@ func NewRunControllersCommand(log logr.Logger) *cobra.Command { kubeconfig.EnsureKubeconfigFlag(runControllersCmd.Flags()) kubeconfig.EnsureKubeconfigPortFlag(runControllersCmd.Flags()) + container_flags.EnsureRuntimeFlag(runControllersCmd.Flags()) + cmds.AddMonitorFlags(runControllersCmd) notifications.AddNotificationSocketFlag(runControllersCmd.Flags())