diff --git a/internal/namespaces/k8s/v1/custom_cluster_test.go b/internal/namespaces/k8s/v1/custom_cluster_test.go index d7b43970f0..472eca36cc 100644 --- a/internal/namespaces/k8s/v1/custom_cluster_test.go +++ b/internal/namespaces/k8s/v1/custom_cluster_test.go @@ -10,7 +10,7 @@ import ( func Test_GetCluster(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createCluster("get-cluster", 1, "DEV1-M"), + BeforeFunc: createCluster("get-cluster", false), Cmd: "scw k8s cluster get {{ .Cluster.ID }}", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -23,7 +23,7 @@ func Test_GetCluster(t *testing.T) { func Test_WaitCluster(t *testing.T) { t.Run("wait for pools", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createCluster("wait-cluster", 1, "GP1-XS"), + BeforeFunc: createCluster("wait-cluster", false), Cmd: "scw k8s cluster wait {{ .Cluster.ID }} wait-for-pools=true", Check: core.TestCheckCombine( core.TestCheckGolden(), diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_get.go b/internal/namespaces/k8s/v1/custom_kubeconfig_get.go index 5b27b0534f..531d2d4235 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_get.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_get.go @@ -72,6 +72,9 @@ func k8sKubeconfigGetRun(ctx context.Context, argsI any) (i any, e error) { GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: request.Region, ClusterID: request.ClusterID, + Redacted: scw.BoolPtr( + request.AuthMethod != authMethodLegacy, + ), // put true after legacy deprecation }) if err != nil { return nil, err diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_get_test.go b/internal/namespaces/k8s/v1/custom_kubeconfig_get_test.go index db0af0ead9..0fe4cded6a 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_get_test.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_get_test.go @@ -17,11 +17,11 @@ func Test_GetKubeconfig(t *testing.T) { //// // Simple use case //// - t.Run("simple", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-simple", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-simple", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig get {{ ." + clusterMetaKey + ".ID }}", OverrideEnv: map[string]string{ @@ -81,8 +81,9 @@ func Test_GetKubeconfig(t *testing.T) { //// t.Run("with_flags", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-with-flags", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-with-flags", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s --profile=default kubeconfig get {{ ." + clusterMetaKey + ".ID }}", OverrideEnv: map[string]string{ @@ -147,8 +148,9 @@ func Test_GetKubeconfig(t *testing.T) { t.Run("with_envs", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-with-envs", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-with-envs", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig get {{ ." + clusterMetaKey + ".ID }}", OverrideEnv: map[string]string{ @@ -212,8 +214,9 @@ func Test_GetKubeconfig(t *testing.T) { //// t.Run("with_flags_and_envs", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-with-flags-and-envs", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-with-flags-and-envs", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw --profile=default k8s kubeconfig get {{ ." + clusterMetaKey + ".ID }}", OverrideEnv: map[string]string{ @@ -283,10 +286,12 @@ func Test_GetKubeconfig(t *testing.T) { t.Run("legacy", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), Cmd: "scw k8s kubeconfig get {{ ." + clusterMetaKey + ".ID }} auth-method=legacy", - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-legacy", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-legacy", true), + fetchClusterKubeconfigMetadata(false), ), Check: core.TestCheckCombine( + core.TestCheckGolden(), core.TestCheckExitCode(0), func(t *testing.T, ctx *core.CheckFuncCtx) { t.Helper() @@ -304,8 +309,9 @@ func Test_GetKubeconfig(t *testing.T) { //// t.Run("copy_cli_token", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), - BeforeFunc: createClusterAndWaitAndKubeconfig( - "get-kubeconfig-copy-cli-token", + BeforeFunc: core.BeforeFuncCombine( + createCluster("get-kubeconfig-copy-cli-token", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig get {{ ." + clusterMetaKey + ".ID }} auth-method=copy-cli-token", OverrideEnv: map[string]string{ diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_install.go b/internal/namespaces/k8s/v1/custom_kubeconfig_install.go index 875ee5e84a..06abf5cbb1 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_install.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_install.go @@ -86,6 +86,9 @@ func k8sKubeconfigInstallRun(ctx context.Context, argsI any) (i any, e error) { GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: request.Region, ClusterID: request.ClusterID, + Redacted: scw.BoolPtr( + request.AuthMethod != authMethodLegacy, + ), // put true after legacy deprecation }) if err != nil { return nil, err diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_install_test.go b/internal/namespaces/k8s/v1/custom_kubeconfig_install_test.go index dd0ed628f7..3ef55a1ecc 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_install_test.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_install_test.go @@ -48,8 +48,9 @@ func Test_InstallKubeconfig(t *testing.T) { t.Run("simple", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), TmpHomeDir: true, - BeforeFunc: createClusterAndWaitAndKubeconfig( - "install-kubeconfig-simple", + BeforeFunc: core.BeforeFuncCombine( + createCluster("install-kubeconfig-simple", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig install {{ ." + clusterMetaKey + ".ID }}", Check: core.TestCheckCombine( @@ -101,9 +102,10 @@ func Test_InstallKubeconfig(t *testing.T) { t.Run("merge", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), TmpHomeDir: true, - BeforeFunc: populateKubeconfigAndCreateCluster( - []byte(existingKubeconfig), - "install-kubeconfig-merge", + BeforeFunc: core.BeforeFuncCombine( + writeKubeconfigFile([]byte(existingKubeconfig)), + createCluster("install-kubeconfig-merge", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig install {{ ." + clusterMetaKey + ".ID }}", Check: core.TestCheckCombine( @@ -165,9 +167,10 @@ func Test_InstallKubeconfig(t *testing.T) { t.Run("merge-keep", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), TmpHomeDir: true, - BeforeFunc: populateKubeconfigAndCreateCluster( - []byte(existingKubeconfig), - "install-kubeconfig-merge-keep", + BeforeFunc: core.BeforeFuncCombine( + writeKubeconfigFile([]byte(existingKubeconfig)), + createCluster("install-kubeconfig-merge-keep", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig install {{ ." + clusterMetaKey + ".ID }} keep-current-context=true", Check: core.TestCheckCombine( @@ -241,9 +244,10 @@ func Test_InstallKubeconfig(t *testing.T) { testConfig := &core.TestConfig{ Commands: k8s.GetCommands(), TmpHomeDir: true, - BeforeFunc: populateKubeconfigAndCreateCluster( - []byte(existingKubeconfig), - "install-kubeconfig-merge-kubeconfig", + BeforeFunc: core.BeforeFuncCombine( + writeKubeconfigFile([]byte(existingKubeconfig)), + createCluster("install-kubeconfig-merge-kubeconfig", true), + fetchClusterKubeconfigMetadata(true), ), Cmd: "scw k8s kubeconfig install {{ ." + clusterMetaKey + ".ID }}", Check: core.TestCheckCombine( diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_uninstall_test.go b/internal/namespaces/k8s/v1/custom_kubeconfig_uninstall_test.go index d4d6719492..cad5b5990b 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_uninstall_test.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_uninstall_test.go @@ -1,7 +1,6 @@ package k8s_test import ( - "errors" "os" "path" "strings" @@ -203,24 +202,11 @@ func Test_UninstallKubeconfig(t *testing.T) { t.Run("uninstall_real_merge", core.Test(&core.TestConfig{ Commands: k8s.GetCommands(), TmpHomeDir: true, - BeforeFunc: func(ctx *core.BeforeFuncCtx) error { - bfunc := populateKubeconfigAndCreateCluster( - []byte(uninstallKubeconfig), - "uninstall-kubeconfig-merge", - ) - if err := bfunc(ctx); err != nil { - return err - } - - cluster := ctx.Meta[clusterMetaKey].(*k8sSDK.Cluster) - cmd := "scw k8s kubeconfig install " + cluster.ID - installOut := ctx.ExecuteCmd(strings.Split(cmd, " ")) - if !strings.Contains(installOut.(string), "successfully written") { - return errors.New("kubeconfig install failed") - } - - return nil - }, + BeforeFunc: core.BeforeFuncCombine( + createCluster("uninstall-kubeconfig-merge", true), + fetchClusterKubeconfigMetadata(true), + cliInstallKubeconfig(), + ), Cmd: "scw k8s kubeconfig uninstall {{ ." + clusterMetaKey + ".ID }}", Check: core.TestCheckCombine( // no golden tests since it's os specific diff --git a/internal/namespaces/k8s/v1/helpers_test.go b/internal/namespaces/k8s/v1/helpers_test.go index 0401eda1ab..a6ec99f5d7 100644 --- a/internal/namespaces/k8s/v1/helpers_test.go +++ b/internal/namespaces/k8s/v1/helpers_test.go @@ -1,6 +1,7 @@ package k8s_test import ( + "errors" "fmt" "os" "path" @@ -10,6 +11,7 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" go_api "github.com/scaleway/scaleway-cli/v2/internal/namespaces/k8s/v1/types" k8s "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" + "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -26,40 +28,35 @@ const ( // register it in the context Meta at metaKey. func createCluster( clusterNameSuffix string, - poolSize int, - nodeType string, + wait bool, ) core.BeforeFunc { + format := "scw k8s cluster create name=cli-test-%s version=%s cni=cilium pools.0.node-type=DEV1-M pools.0.size=1 pools.0.name=default" + if wait { + format += " --wait" + } + return core.ExecStoreBeforeCmd( clusterMetaKey, fmt.Sprintf( - "scw k8s cluster create name=cli-test-%s version=%s cni=cilium pools.0.node-type=%s pools.0.size=%d pools.0.name=default", + format, clusterNameSuffix, kapsuleVersion, - nodeType, - poolSize, ), ) } -// createClusterAndWaitAndKubeconfig creates a basic cluster with 1 dev1-m as node, the given version and -// register it in the context Meta at metaKey. -func createClusterAndWaitAndKubeconfig( - clusterNameSuffix string, +// fetchClusterKubeconfigMetadata fetch kubeconfig of previously created cluster. +func fetchClusterKubeconfigMetadata( + redacted bool, ) core.BeforeFunc { return func(ctx *core.BeforeFuncCtx) error { - cmd := fmt.Sprintf( - "scw k8s cluster create name=cli-test-%s version=%s cni=cilium pools.0.node-type=DEV1-M pools.0.size=1 pools.0.name=default --wait", - clusterNameSuffix, - kapsuleVersion, - ) - res := ctx.ExecuteCmd(strings.Split(cmd, " ")) - cluster := res.(*k8s.Cluster) - ctx.Meta[clusterMetaKey] = cluster + cluster := ctx.Meta[clusterMetaKey].(*k8s.Cluster) apiKubeconfig, err := k8s.NewAPI(ctx.Client). GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: cluster.Region, ClusterID: cluster.ID, + Redacted: scw.BoolPtr(redacted), }) if err != nil { return err @@ -75,10 +72,7 @@ func createClusterAndWaitAndKubeconfig( } } -func populateKubeconfigAndCreateCluster( - kubeconfigRaw []byte, - clusterNameSuffix string, -) core.BeforeFunc { +func writeKubeconfigFile(kubeconfigRaw []byte) core.BeforeFunc { return func(ctx *core.BeforeFuncCtx) error { // Populate $HOME/.kube/config with existing data kubeconfigPath := path.Join(ctx.Meta["HOME"].(string), ".kube", "config") @@ -86,14 +80,20 @@ func populateKubeconfigAndCreateCluster( return err } - if err := os.WriteFile(kubeconfigPath, kubeconfigRaw, 0o600); err != nil { - return err + return os.WriteFile(kubeconfigPath, kubeconfigRaw, 0o600) + } +} + +func cliInstallKubeconfig() core.BeforeFunc { + return func(ctx *core.BeforeFuncCtx) error { + cluster := ctx.Meta[clusterMetaKey].(*k8s.Cluster) + cmd := "scw k8s kubeconfig install " + cluster.ID + installOut := ctx.ExecuteCmd(strings.Split(cmd, " ")) + if !strings.Contains(installOut.(string), "successfully written") { + return errors.New("kubeconfig install failed") } - // Then create a cluster - return createClusterAndWaitAndKubeconfig( - clusterNameSuffix, - )(ctx) + return nil } } diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.cassette.yaml index fb798d9cb6..5dd89ffd5d 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fa0e066-72fb-4514-8a4c-d8d933d97558 + - 46a43bd2-7b70-4655-a25e-f23cb49eeec0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", "name":"pn-nostalgic-babbage", + body: '{"id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "name":"pn-goofy-faraday", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:56.912649Z", "updated_at":"2025-10-09T18:37:56.912649Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"b8ef86a4-f177-4148-8629-c28e3c0338ae", - "created_at":"2025-10-09T18:37:56.912649Z", "updated_at":"2025-10-09T18:37:56.912649Z", - "subnet":"172.17.44.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"f9415017-f8fb-487b-8040-98437c689e8d", "created_at":"2025-10-09T18:37:56.912649Z", - "updated_at":"2025-10-09T18:37:56.912649Z", "subnet":"fd58:6b70:2d5a:4498::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", + "created_at":"2025-10-15T16:31:44.964172Z", "updated_at":"2025-10-15T16:31:44.964172Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"f79f96d5-1216-4063-9f52-ec6c06b31c6c", + "created_at":"2025-10-15T16:31:44.964172Z", "updated_at":"2025-10-15T16:31:44.964172Z", + "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"89418492-5428-4ab5-b32c-e55cb6342317", "created_at":"2025-10-15T16:31:44.964172Z", + "updated_at":"2025-10-15T16:31:44.964172Z", "subnet":"fd58:6b70:2d5a:5b4e::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", "name":"pn-nostalgic-babbage", + body: '{"id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "name":"pn-goofy-faraday", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:56.912649Z", "updated_at":"2025-10-09T18:37:56.912649Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"b8ef86a4-f177-4148-8629-c28e3c0338ae", - "created_at":"2025-10-09T18:37:56.912649Z", "updated_at":"2025-10-09T18:37:56.912649Z", - "subnet":"172.17.44.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"f9415017-f8fb-487b-8040-98437c689e8d", "created_at":"2025-10-09T18:37:56.912649Z", - "updated_at":"2025-10-09T18:37:56.912649Z", "subnet":"fd58:6b70:2d5a:4498::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", + "created_at":"2025-10-15T16:31:44.964172Z", "updated_at":"2025-10-15T16:31:44.964172Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"f79f96d5-1216-4063-9f52-ec6c06b31c6c", + "created_at":"2025-10-15T16:31:44.964172Z", "updated_at":"2025-10-15T16:31:44.964172Z", + "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"89418492-5428-4ab5-b32c-e55cb6342317", "created_at":"2025-10-15T16:31:44.964172Z", + "updated_at":"2025-10-15T16:31:44.964172Z", "subnet":"fd58:6b70:2d5a:5b4e::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1140" + - "1136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:57 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9801b8b4-ecbb-4e17-8893-16082a6b7f90 + - 17aa92e7-e68a-47b0-ba90-329c73d32911 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:57.866574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:45.873397Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,348 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:57.866574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:45.873397Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1fd16fc-8dc5-4564-9c4b-3d5b19d43c5a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:57.866574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:57.866574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8fa4792-f8a6-42ad-8f0c-e381e885913a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74159e7c-376b-4370-8fe0-97e0a7233c08 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3923aea-df11-4a2e-8b59-82169112cd20 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 58e57335-981e-44fe-97a2-461f34f71778 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:18 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbb9207b-ecb6-4036-87a6-7bb7ec06201a + - a6362cd2-e3fe-44d5-90a8-f699c7bf853f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.073954Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.073954Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:23 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13b3e2fb-ef25-426a-b37d-9cc2253b9ad8 + - 5600dac5-67ad-4fb3-b18a-892ae46e54fb status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:28 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4572658d-52d3-43bd-b6a8-b4d4119daefa + - f8fbaadb-fa3e-446d-a8bb-a3caf510ff3a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:33 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caeecc95-cc7d-422d-97ce-0fdcf8010ddb + - 73b9f562-d23f-49c9-982a-c2c38e13fc9b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:38 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 074f266e-9446-41c3-9d37-bbdec09a20f6 + - 45f1051e-9401-4456-ac94-b7378b240c36 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:43 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09a49a8e-0a81-4dd0-b668-fe6a24221fb0 + - 25271404-5330-4b45-9b1e-22f6831a3b8e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:48 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3e5245-4659-4c4f-aab0-29cf3f56f4c7 + - 39677fb5-ec55-4065-8214-87ab48be7e64 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:53 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4929b6a7-9184-46c7-9b0d-151e668b8d23 + - 12250244-684e-43e9-9a47-839749f7dbd2 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:58 GMT + - Wed, 15 Oct 2025 16:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af4333af-8dd8-4a9a-b935-fef470b9c8a3 + - 55d3deef-bfbe-4dfe-9dd7-70a288c23b67 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:03 GMT + - Wed, 15 Oct 2025 16:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ecd308c-2813-478d-b174-8d09aabe5da7 + - 16a754c1-5ccf-47f4-9880-b292fa8eb60a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:08 GMT + - Wed, 15 Oct 2025 16:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6da47f7-bffc-4bfc-af2a-4371314da888 + - 6e2fe16a-90fc-4e9f-8321-745e5719ce15 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:14 GMT + - Wed, 15 Oct 2025 16:32:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 156cd740-f154-4916-9d68-b20e1ace9b01 + - f94087a6-3372-49a5-aadc-7ca57f4af372 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:19 GMT + - Wed, 15 Oct 2025 16:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d86409f-a729-4f4c-b048-610d5d60e06c + - 32b2943a-8b66-4c61-aa43-64ea4f93c6ad status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:32:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4c36fe5-4840-4596-bfe5-9ad49df0df34 + - c61866ae-e7ff-4800-be8d-f8d5a94914c5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40ea3fa7-9edc-41ab-912b-7e908bf596aa + - 30a7b64c-3be1-4dd3-a478-75e8dd06ebd1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:34 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73cffe8a-4fbe-43a4-a78f-6b3900e9fcc1 + - 88a7edc5-8e13-4315-bdc4-a5435c7bfd6a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:39 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a55a644-4f5e-47bf-b0c1-baf59546023a + - a6141836-cb09-4397-beff-3ba6ef5a8c8f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:31:46.438574Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:44 GMT + - Wed, 15 Oct 2025 16:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d9dd9ce-8b83-4494-a26b-b2c08556852a + - d2d6e51c-25b2-4a73-92dc-2bb7782b72cb status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:11.863079Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:11.863079Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1571" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:49 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,61 +1313,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f42ebc4d-d64e-420a-b113-0e83b4fb12e7 + - 4311ab2f-e174-4194-b003-d0d714df143c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVJUSk5la1V3VGxadldFUlVUVEZOVkVGNFRrUkZNazE2UlRCT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFRSMldsUTFhMU5LUkdGeE0zTmhDbTB6ZWxSMVZVWmpXVEF2Y1VKUE0xcEVkVEp5THpWSmRGRkZaVUZKTDJkbWNFSnJVbU5xZW1FeVozUXdlWFZpT0U5S2FqZFZTa2RMVGtwVWJVbFdXRVlLT0ZOdlJWSkhaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZKdldUTTVTMjVpUVRKeVdETTJTRlJ0VVVWVE9FRnJNSEZFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbnBIU2xWVkNtZHNkVkIxVm1ONmNXOUpVamx4ZFhGNE0zSlNXRXh1Y0U5TUsySjJOaTlIYjI1emRtWlJTV2hCU1hvNGFTOUVjSEJMZDJ0M2JGbzBjWFJZV1M5b1RqSUtUMHB0VUdSUFEybEhZbEJMZFdvd1ZGUnROQzhLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGEyYjUzZTktZThkZS00N2JlLWEwODYtNzhjNDQyYTI3ZjY5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69/kubeconfig?redacted=true method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVJUSk5la1V3VGxadldFUlVUVEZOVkVGNFRrUkZNazE2UlRCT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFRSMldsUTFhMU5LUkdGeE0zTmhDbTB6ZWxSMVZVWmpXVEF2Y1VKUE0xcEVkVEp5THpWSmRGRkZaVUZKTDJkbWNFSnJVbU5xZW1FeVozUXdlWFZpT0U5S2FqZFZTa2RMVGtwVWJVbFdXRVlLT0ZOdlJWSkhaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZKdldUTTVTMjVpUVRKeVdETTJTRlJ0VVVWVE9FRnJNSEZFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbnBIU2xWVkNtZHNkVkIxVm1ONmNXOUpVamx4ZFhGNE0zSlNXRXh1Y0U5TUsySjJOaTlIYjI1emRtWlJTV2hCU1hvNGFTOUVjSEJMZDJ0M2JGbzBjWFJZV1M5b1RqSUtUMHB0VUdSUFEybEhZbEJMZFdvd1ZGUnROQzhLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGEyYjUzZTktZThkZS00N2JlLWEwODYtNzhjNDQyYTI3ZjY5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1575" + - "1786" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:54 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,61 +1345,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fe7a399-7ee3-41ee-a56c-38c78ecfdb48 + - 5727e36f-3cd6-40c3-8083-2c16ace39fa7 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVJUSk5la1V3VGxadldFUlVUVEZOVkVGNFRrUkZNazE2UlRCT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFRSMldsUTFhMU5LUkdGeE0zTmhDbTB6ZWxSMVZVWmpXVEF2Y1VKUE0xcEVkVEp5THpWSmRGRkZaVUZKTDJkbWNFSnJVbU5xZW1FeVozUXdlWFZpT0U5S2FqZFZTa2RMVGtwVWJVbFdXRVlLT0ZOdlJWSkhaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZKdldUTTVTMjVpUVRKeVdETTJTRlJ0VVVWVE9FRnJNSEZFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbnBIU2xWVkNtZHNkVkIxVm1ONmNXOUpVamx4ZFhGNE0zSlNXRXh1Y0U5TUsySjJOaTlIYjI1emRtWlJTV2hCU1hvNGFTOUVjSEJMZDJ0M2JGbzBjWFJZV1M5b1RqSUtUMHB0VUdSUFEybEhZbEJMZFdvd1ZGUnROQzhLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGEyYjUzZTktZThkZS00N2JlLWEwODYtNzhjNDQyYTI3ZjY5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69/kubeconfig?redacted=true method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVJUSk5la1V3VGxadldFUlVUVEZOVkVGNFRrUkZNazE2UlRCT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFRSMldsUTFhMU5LUkdGeE0zTmhDbTB6ZWxSMVZVWmpXVEF2Y1VKUE0xcEVkVEp5THpWSmRGRkZaVUZKTDJkbWNFSnJVbU5xZW1FeVozUXdlWFZpT0U5S2FqZFZTa2RMVGtwVWJVbFdXRVlLT0ZOdlJWSkhaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZKdldUTTVTMjVpUVRKeVdETTJTRlJ0VVVWVE9FRnJNSEZFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbnBIU2xWVkNtZHNkVkIxVm1ONmNXOUpVamx4ZFhGNE0zSlNXRXh1Y0U5TUsySjJOaTlIYjI1emRtWlJTV2hCU1hvNGFTOUVjSEJMZDJ0M2JGbzBjWFJZV1M5b1RqSUtUMHB0VUdSUFEybEhZbEJMZFdvd1ZGUnROQzhLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGEyYjUzZTktZThkZS00N2JlLWEwODYtNzhjNDQyYTI3ZjY5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1575" + - "1786" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:59 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1747,1243 +1377,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34bfe03c-df0e-4e61-98d8-add5f81993cd + - 9277582f-3cbb-4bbd-acb3-0e80ecdc252d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:12.633610Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69?with_additional_resources=true + method: DELETE response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:12.633610Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b082ebfc-b844-40a6-888c-071271f2ae90 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ffea1328-9b2d-4403-995b-37c422b742bf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cba0e696-72af-4376-ad9c-7f9986034da9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e71e03ff-7558-4ee8-aae4-f9d42243a519 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a79c494-2063-44f1-84a0-f61910ff56f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 71470105-ea44-404b-958a-ac4ab172ea82 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf82ff87-6fa0-4786-8d84-0c696574b960 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d497b802-f3a9-4ea4-b3f8-7f9cd63d434b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c6039f0-1ae5-481c-99dc-bb73747b93af - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 53c7ac5f-5deb-43e9-8a10-4d813719d83b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2ca5d5e-1436-4a35-841a-bb003c3fc00f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb5c9bcc-0494-44ce-aadf-5758d46dc909 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0fe5948a-da68-45d1-a179-d199e63a1093 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8f1e89c-a131-4fa6-b2f3-d99b218c046e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 881652eb-f133-4592-bbe9-b836d90e8b2d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:37:58.555715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 15185bdf-6b6b-4584-8f60-48d5652aadf3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:22.964864Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:22.964864Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1572" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3cb31881-1bff-4e13-aa7c-0e2cf19ab64f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5RVJUUk5lbU14VDBadldFUlVUVEZOVkVGM1QwUkZORTE2WXpGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVGprMmFrNTFWRVZPT0RZM1dYY3lDbTVIYTJocU5XNTBPWHA1VFhaYVl6UnhkM0ZXWm5rck1tNVNkRTVZWVRBclEwOUtTakZQYlhGTWJuSllUM3B6TnpWR1pXeFZjRkpVS3pCS00yVnBVMG9LWWpkbGRsUXpRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSZVVzeFRWbHVhbmx5VFc5TFFpczRVMUF4VWxwNWFIRTNSbWxFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFY1VEZGNENrSnZURmQwWkRCbllTOXlXWFUyTTJGc1MwWjRVMjFKYXpSWVYzVTBhWE4xVEdNNE5HRjNTV2hCVFRsNksycFVRamc1TTBOV1pVZ3JUbVE0ZDFaT01Hb0tabXBpY214UFVUTnRNbVpxYTJSeE5uVk1MMFVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDFiNDMyOGMtYTg0Ny00NWQ2LWJiNTctZTZmMGZkYzQxODEyLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNGdMVWV1VklKc2pCbmhtM0NiSlpLYzNGamdWMUltZVRka1ZpcHhuRkZsOU4wUVlwUWxBUGg4bnk="}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812/kubeconfig - method: GET - response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5RVJUUk5lbU14VDBadldFUlVUVEZOVkVGM1QwUkZORTE2WXpGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVGprMmFrNTFWRVZPT0RZM1dYY3lDbTVIYTJocU5XNTBPWHA1VFhaYVl6UnhkM0ZXWm5rck1tNVNkRTVZWVRBclEwOUtTakZQYlhGTWJuSllUM3B6TnpWR1pXeFZjRkpVS3pCS00yVnBVMG9LWWpkbGRsUXpRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSZVVzeFRWbHVhbmx5VFc5TFFpczRVMUF4VWxwNWFIRTNSbWxFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFY1VEZGNENrSnZURmQwWkRCbllTOXlXWFUyTTJGc1MwWjRVMjFKYXpSWVYzVTBhWE4xVEdNNE5HRjNTV2hCVFRsNksycFVRamc1TTBOV1pVZ3JUbVE0ZDFaT01Hb0tabXBpY214UFVUTnRNbVpxYTJSeE5uVk1MMFVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDFiNDMyOGMtYTg0Ny00NWQ2LWJiNTctZTZmMGZkYzQxODEyLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNGdMVWV1VklKc2pCbmhtM0NiSlpLYzNGamdWMUltZVRka1ZpcHhuRkZsOU4wUVlwUWxBUGg4bnk="}' - headers: - Content-Length: - - "1842" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6687d513-95c3-455c-9d19-89872ebbf21d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5RVJUUk5lbU14VDBadldFUlVUVEZOVkVGM1QwUkZORTE2WXpGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVGprMmFrNTFWRVZPT0RZM1dYY3lDbTVIYTJocU5XNTBPWHA1VFhaYVl6UnhkM0ZXWm5rck1tNVNkRTVZWVRBclEwOUtTakZQYlhGTWJuSllUM3B6TnpWR1pXeFZjRkpVS3pCS00yVnBVMG9LWWpkbGRsUXpRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSZVVzeFRWbHVhbmx5VFc5TFFpczRVMUF4VWxwNWFIRTNSbWxFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFY1VEZGNENrSnZURmQwWkRCbllTOXlXWFUyTTJGc1MwWjRVMjFKYXpSWVYzVTBhWE4xVEdNNE5HRjNTV2hCVFRsNksycFVRamc1TTBOV1pVZ3JUbVE0ZDFaT01Hb0tabXBpY214UFVUTnRNbVpxYTJSeE5uVk1MMFVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDFiNDMyOGMtYTg0Ny00NWQ2LWJiNTctZTZmMGZkYzQxODEyLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNGdMVWV1VklKc2pCbmhtM0NiSlpLYzNGamdWMUltZVRka1ZpcHhuRkZsOU4wUVlwUWxBUGg4bnk="}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812/kubeconfig - method: GET - response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5RVJUUk5lbU14VDBadldFUlVUVEZOVkVGM1QwUkZORTE2WXpGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVGprMmFrNTFWRVZPT0RZM1dYY3lDbTVIYTJocU5XNTBPWHA1VFhaYVl6UnhkM0ZXWm5rck1tNVNkRTVZWVRBclEwOUtTakZQYlhGTWJuSllUM3B6TnpWR1pXeFZjRkpVS3pCS00yVnBVMG9LWWpkbGRsUXpRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSZVVzeFRWbHVhbmx5VFc5TFFpczRVMUF4VWxwNWFIRTNSbWxFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFY1VEZGNENrSnZURmQwWkRCbllTOXlXWFUyTTJGc1MwWjRVMjFKYXpSWVYzVTBhWE4xVEdNNE5HRjNTV2hCVFRsNksycFVRamc1TTBOV1pVZ3JUbVE0ZDFaT01Hb0tabXBpY214UFVUTnRNbVpxYTJSeE5uVk1MMFVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDFiNDMyOGMtYTg0Ny00NWQ2LWJiNTctZTZmMGZkYzQxODEyLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbiIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWNvcHktY2xpLXRva2VuLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctY29weS1jbGktdG9rZW4Ka2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1jb3B5LWNsaS10b2tlbi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNGdMVWV1VklKc2pCbmhtM0NiSlpLYzNGamdWMUltZVRka1ZpcHhuRkZsOU4wUVlwUWxBUGg4bnk="}' - headers: - Content-Length: - - "1842" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb89d6e3-e703-443b-b1cb-c58338c65009 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812?with_additional_resources=true - method: DELETE - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1611" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:41:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b6b90d4-d96a-4ab3-8ab2-e892d531383f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 - method: GET - response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" + - "1610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:26 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2991,61 +1441,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629aa527-5e50-4003-a107-f2dd1e31d3af + - 7cf8d59a-5b35-48d5-8c74-2f66586f3b8e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:12.633610Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"region":"fr-par", "id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.866574Z", - "updated_at":"2025-10-09T18:41:26.074571Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.d1b4328c-a847-45d6-bb57-e6f0fdc41812.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"4a2b53e9-e8de-47be-a086-78c442a27f69", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.873397Z", + "updated_at":"2025-10-15T16:33:12.633610Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-copy-cli-token", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.4a2b53e9-e8de-47be-a086-78c442a27f69.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"f1d533fd-eb65-4f40-b7c1-06b98d83858a", - "commitment_ends_at":"2025-10-09T18:37:57.866582Z", "acl_available":true, "iam_nodes_group_id":"eb08b691-94e7-449b-a77b-6b11376efa9f", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"451b4b59-36e6-419b-8209-84cd8207fbe1", + "commitment_ends_at":"2025-10-15T16:31:45.873408Z", "acl_available":true, "iam_nodes_group_id":"d839c930-5843-42d6-83a0-104d47aca4bd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:31 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3053,20 +1503,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a84d2c18-a5f9-4236-8949-c48191ca7b1f + - ae7f8972-8a7b-482b-92f7-17b95fb81916 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4a2b53e9-e8de-47be-a086-78c442a27f69","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d1b4328c-a847-45d6-bb57-e6f0fdc41812 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4a2b53e9-e8de-47be-a086-78c442a27f69 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d1b4328c-a847-45d6-bb57-e6f0fdc41812","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4a2b53e9-e8de-47be-a086-78c442a27f69","type":"not_found"}' headers: Content-Length: - "128" @@ -3075,9 +1525,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:36 GMT + - Wed, 15 Oct 2025 16:33:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3085,7 +1535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e18ce39-9a32-4f61-98d2-445942804c94 + - ce05fcdb-77ba-4c11-b6a6-8f369786f8af status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.golden index 5aeedf34e6..e09052bf2c 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-copy-cli-token.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTjk2ak51VEVOODY3WXcyCm5Ha2hqNW50OXp5TXZaYzRxd3FWZnkrMm5SdE5YYTArQ09KSjFPbXFMbnJYT3pzNzVGZWxVcFJUKzBKM2VpU0oKYjdldlQzQ2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJReUsxTVluanlyTW9LQis4U1AxUlp5aHE3RmlEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQlV5TFF4CkJvTFd0ZDBnYS9yWXU2M2FsS0Z4U21JazRYV3U0aXN1TGM4NGF3SWhBTTl6K2pUQjg5M0NWZUgrTmQ4d1ZOMGoKZmpicmxPUTNtMmZqa2RxNnVML0UKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= - server: https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTlZvWERUTTFNVEF4TkRFMk16RTBOVm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTTR2WlQ1a1NKRGFxM3NhCm0zelR1VUZjWTAvcUJPM1pEdTJyLzVJdFFFZUFJL2dmcEJrUmNqemEyZ3QweXViOE9KajdVSkdLTkpUbUlWWEYKOFNvRVJHZWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUNFJvWTM5S25iQTJyWDM2SFRtUUVTOEFrMHFEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQnpHSlVVCmdsdVB1VmN6cW9JUjlxdXF4M3JSWExucE9MK2J2Ni9Hb25zdmZRSWhBSXo4aS9EcHBLd2t3bFo0cXRYWS9oTjIKT0ptUGRPQ2lHYlBLdWowVFRtNC8KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-copy-cli-token contexts: - context: @@ -20,4 +20,4 @@ users: token: 11111111-1111-1111-1111-111111111111 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTjk2ak51VEVOODY3WXcyCm5Ha2hqNW50OXp5TXZaYzRxd3FWZnkrMm5SdE5YYTArQ09KSjFPbXFMbnJYT3pzNzVGZWxVcFJUKzBKM2VpU0oKYjdldlQzQ2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJReUsxTVluanlyTW9LQis4U1AxUlp5aHE3RmlEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQlV5TFF4CkJvTFd0ZDBnYS9yWXU2M2FsS0Z4U21JazRYV3U0aXN1TGM4NGF3SWhBTTl6K2pUQjg5M0NWZUgrTmQ4d1ZOMGoKZmpicmxPUTNtMmZqa2RxNnVML0UKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://d1b4328c-a847-45d6-bb57-e6f0fdc41812.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-copy-cli-token\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-copy-cli-token\n user: cli-token-11111111\n name: admin@cli-test-get-kubeconfig-copy-cli-token\ncurrent-context: admin@cli-test-get-kubeconfig-copy-cli-token\nkind: Config\npreferences: {}\nusers:\n- name: cli-token-11111111\n user:\n token: 11111111-1111-1111-1111-111111111111\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTlZvWERUTTFNVEF4TkRFMk16RTBOVm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTTR2WlQ1a1NKRGFxM3NhCm0zelR1VUZjWTAvcUJPM1pEdTJyLzVJdFFFZUFJL2dmcEJrUmNqemEyZ3QweXViOE9KajdVSkdLTkpUbUlWWEYKOFNvRVJHZWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUNFJvWTM5S25iQTJyWDM2SFRtUUVTOEFrMHFEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQnpHSlVVCmdsdVB1VmN6cW9JUjlxdXF4M3JSWExucE9MK2J2Ni9Hb25zdmZRSWhBSXo4aS9EcHBLd2t3bFo0cXRYWS9oTjIKT0ptUGRPQ2lHYlBLdWowVFRtNC8KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://4a2b53e9-e8de-47be-a086-78c442a27f69.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-copy-cli-token\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-copy-cli-token\n user: cli-token-11111111\n name: admin@cli-test-get-kubeconfig-copy-cli-token\ncurrent-context: admin@cli-test-get-kubeconfig-copy-cli-token\nkind: Config\npreferences: {}\nusers:\n- name: cli-token-11111111\n user:\n token: 11111111-1111-1111-1111-111111111111\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.cassette.yaml index b354c254d0..b68d27d2fc 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f023340b-9826-42be-99de-460f864e3a53 + - b0c045aa-59da-4eb0-a99f-c3eb217f493c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", "name":"pn-recursing-ganguly", + body: '{"id":"609ed341-cb2e-460c-baf7-4da42a944dba", "name":"pn-jovial-allen", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.324888Z", "updated_at":"2025-10-09T18:37:57.324888Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4861eee1-2634-40ab-914c-e9241c4de3f6", - "created_at":"2025-10-09T18:37:57.324888Z", "updated_at":"2025-10-09T18:37:57.324888Z", - "subnet":"172.17.56.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"feb95d0a-6085-4367-b80b-959c68c131ca", "created_at":"2025-10-09T18:37:57.324888Z", - "updated_at":"2025-10-09T18:37:57.324888Z", "subnet":"fd58:6b70:2d5a:d8f8::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", + "created_at":"2025-10-15T16:31:45.064343Z", "updated_at":"2025-10-15T16:31:45.064343Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c0ba1a56-a500-4ea1-a962-511127d9b7b2", + "created_at":"2025-10-15T16:31:45.064343Z", "updated_at":"2025-10-15T16:31:45.064343Z", + "subnet":"172.17.96.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"25e294b1-1961-4ffb-aa2e-d952ab947258", "created_at":"2025-10-15T16:31:45.064343Z", + "updated_at":"2025-10-15T16:31:45.064343Z", "subnet":"fd58:6b70:2d5a:a9d2::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", "name":"pn-recursing-ganguly", + body: '{"id":"609ed341-cb2e-460c-baf7-4da42a944dba", "name":"pn-jovial-allen", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.324888Z", "updated_at":"2025-10-09T18:37:57.324888Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4861eee1-2634-40ab-914c-e9241c4de3f6", - "created_at":"2025-10-09T18:37:57.324888Z", "updated_at":"2025-10-09T18:37:57.324888Z", - "subnet":"172.17.56.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"feb95d0a-6085-4367-b80b-959c68c131ca", "created_at":"2025-10-09T18:37:57.324888Z", - "updated_at":"2025-10-09T18:37:57.324888Z", "subnet":"fd58:6b70:2d5a:d8f8::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", + "created_at":"2025-10-15T16:31:45.064343Z", "updated_at":"2025-10-15T16:31:45.064343Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c0ba1a56-a500-4ea1-a962-511127d9b7b2", + "created_at":"2025-10-15T16:31:45.064343Z", "updated_at":"2025-10-15T16:31:45.064343Z", + "subnet":"172.17.96.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"25e294b1-1961-4ffb-aa2e-d952ab947258", "created_at":"2025-10-15T16:31:45.064343Z", + "updated_at":"2025-10-15T16:31:45.064343Z", "subnet":"fd58:6b70:2d5a:a9d2::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1140" + - "1135" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:57 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12e05b64-c438-44ee-a0aa-1a5d132b4faf + - 6baeaa7e-099e-434c-a239-82bd8c78f5c0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.140862Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.128525Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,38 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.140862Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.128525Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:58 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73e33869-893b-4f97-8ae6-0e05dfda2d8c + - c8bd5c70-bd7b-44fc-9b45-561df960fe7b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.140862Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.334338Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.140862Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.334338Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1531" + - "1530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:58 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c2705c4-642f-4d4c-ba2a-5838ad6140c1 + - 6d0ad7f3-4376-4691-aa4e-ba0a623b02ed status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:03 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0108bd10-2fa8-411b-a829-da963b7919e2 + - 64fb91f6-fbbe-45b2-bd49-6eef857236f5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:08 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d5b1a74-68cd-4b85-9103-48fb0756d3c4 + - 10b7ab40-6d2e-4436-bc98-9c57fb89c77c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:13 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a48b09d7-02a9-4652-a1fc-9ddb098cef54 + - 4e17c89e-d054-4d4f-8cc1-275c3bef5798 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:18 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d63f693d-99e1-4cd6-8007-04d2aaacf312 + - 7cd3497d-9daf-4ec8-8087-b82240180cb3 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:23 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dff20001-3d63-4ecd-871d-ee1a59b1e8a7 + - 80586f90-7a91-4ec1-8a83-826c4ef5a384 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:28 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a45587c-1183-418e-8ca4-ea9df97fcf3a + - 7d41b02e-4c9a-4860-8056-4bcba4a63c79 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:33 GMT + - Wed, 15 Oct 2025 16:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2157cb9b-a390-45be-bf0c-c932cdddd287 + - 01285ecd-c3df-4b7f-9208-0171aa883096 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:38 GMT + - Wed, 15 Oct 2025 16:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f7262f0-b708-42c6-835e-fc3e41ba1813 + - 58a96a21-17a4-4f74-b865-8c30a1b7e180 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:43 GMT + - Wed, 15 Oct 2025 16:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1acaf2eb-112a-42ca-b36e-85ac3cd0a2ca + - e1398044-1756-445c-9a60-602752512b5b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:48 GMT + - Wed, 15 Oct 2025 16:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a446fdb-f9ce-4f88-bae7-93d8f0ca4ea6 + - d27b679c-0330-4d4d-ac22-17838f3e770a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:53 GMT + - Wed, 15 Oct 2025 16:32:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65080229-96bc-47d1-b63b-430d54c6b403 + - 2423182e-bbf8-4c1c-bb16-1d0921d118f7 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:59 GMT + - Wed, 15 Oct 2025 16:32:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d5280f-fd8b-4261-a980-ff1dc37b07c9 + - 9e1f494b-e302-40ce-9cb9-a738158db2aa status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:04 GMT + - Wed, 15 Oct 2025 16:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 329548a8-3e38-479e-bcaa-53d6053e780e + - dbc938ab-eb21-4580-b2c2-540db3da87c0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:09 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8733ae9-29d3-4dfb-a542-07629b9a8ad6 + - 0f4df00c-e0fe-4d6e-847f-6b4d96808782 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:14 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f239601-aa87-4562-a3dc-e79b33254f1d + - c15a5e89-6893-4881-bddf-97cd70dfc7c5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:19 GMT + - Wed, 15 Oct 2025 16:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ba6deb9-1407-4092-b0f1-1da37069a820 + - 4630b2d7-c982-49be-ab15-63f0a391daeb status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:37:58.823947Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36140ff5-157f-4702-a31a-4ee8f5d1851a + - f6586b93-5805-4285-bcb6-81e376eedfa8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:25.094477Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:25.094477Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1564" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,39 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e3c5c9a-b75f-4936-a41f-61361e0cfe98 + - 62713603-5a43-4511-858d-f689047a21d8 status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:31:46.697840Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "398" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1415,31 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96d70094-0635-4b71-b31c-acf90baecd4e + - 55791347-0890-405b-a444-6e30d4f2731f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JUbEJOVzFIVlZWV1lrRlFaVEYwQ2psblExSlVVMkUyU2xSc2RWcG9WV2RVYjJaSk1rWkhaVXRJVVRZNVZIbHBlR0V3YjAxcVdFRk1RbVk1ZVhwMk1rUlRRME5SYUhFeFNWRktiMkZZY2pBS2VXNUxTa2M0VTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUmFVcGFiSGhxU2s0NVdFaFZiR3BLTnpWaE5WVnRZeXMxTDBkNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGcVlVOXNDbFpVV25abVFVTXhPVEozZVZoaFFubExObVZ4VEhocVJtaEpkeTltUW5oeGIyZHdPRWd3VlVOSlVVUm5XWFIwY2pWUVJHOUdWVVZ2UjNsVVkyeDFaMHNLVEdOWFlYQmpkVkpMUzI0dldFaHNTWGwyU1UxUVVUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8yZGY5M2VjYi05ZWE4LTRjZDEtODM2Yy0zMDhjMDg4NjhlYzkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctbGVnYWN5CiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGdTMFdUVHVvanBibVNoUngyakFUMWp4dFZDTkhUbVR1Mk9CYXdmWHJxbVZ2MFJkeTFWcEw2dHRh"}' + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.357049Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JUbEJOVzFIVlZWV1lrRlFaVEYwQ2psblExSlVVMkUyU2xSc2RWcG9WV2RVYjJaSk1rWkhaVXRJVVRZNVZIbHBlR0V3YjAxcVdFRk1RbVk1ZVhwMk1rUlRRME5SYUhFeFNWRktiMkZZY2pBS2VXNUxTa2M0VTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUmFVcGFiSGhxU2s0NVdFaFZiR3BLTnpWaE5WVnRZeXMxTDBkNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGcVlVOXNDbFpVV25abVFVTXhPVEozZVZoaFFubExObVZ4VEhocVJtaEpkeTltUW5oeGIyZHdPRWd3VlVOSlVVUm5XWFIwY2pWUVJHOUdWVVZ2UjNsVVkyeDFaMHNLVEdOWFlYQmpkVkpMUzI0dldFaHNTWGwyU1UxUVVUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8yZGY5M2VjYi05ZWE4LTRjZDEtODM2Yy0zMDhjMDg4NjhlYzkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctbGVnYWN5CiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGdTMFdUVHVvanBibVNoUngyakFUMWp4dFZDTkhUbVR1Mk9CYXdmWHJxbVZ2MFJkeTFWcEw2dHRh"}' + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.357049Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1782" + - "1563" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1447,31 +1499,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218e33e7-3c22-4625-830f-d8cb0db85b60 + - 136e0e85-cbe5-48e6-963d-564f1a2594a7 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JUbEJOVzFIVlZWV1lrRlFaVEYwQ2psblExSlVVMkUyU2xSc2RWcG9WV2RVYjJaSk1rWkhaVXRJVVRZNVZIbHBlR0V3YjAxcVdFRk1RbVk1ZVhwMk1rUlRRME5SYUhFeFNWRktiMkZZY2pBS2VXNUxTa2M0VTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUmFVcGFiSGhxU2s0NVdFaFZiR3BLTnpWaE5WVnRZeXMxTDBkNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGcVlVOXNDbFpVV25abVFVTXhPVEozZVZoaFFubExObVZ4VEhocVJtaEpkeTltUW5oeGIyZHdPRWd3VlVOSlVVUm5XWFIwY2pWUVJHOUdWVVZ2UjNsVVkyeDFaMHNLVEdOWFlYQmpkVkpMUzI0dldFaHNTWGwyU1UxUVVUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8yZGY5M2VjYi05ZWE4LTRjZDEtODM2Yy0zMDhjMDg4NjhlYzkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctbGVnYWN5CiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGdTMFdUVHVvanBibVNoUngyakFUMWp4dFZDTkhUbVR1Mk9CYXdmWHJxbVZ2MFJkeTFWcEw2dHRh"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NuVktUVFl6YmtaWFF6TTFTV2xQQ210MlZGVkdOWFZzTHpCUVQybGpaWFJqTWk5eVMzZExObFZqYjB4NFMyRnVlRGxuTlV4SVMzQXJNR05RZHpCdk9FZ3JabUY1U2tsNFNuaGlaV0Y2ZEZRS05IRXdWVU4wUTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGVUbEVkbnAwZG5kelJqZFBNQ3RwYTFvMk5tWlBiaXRCUzFoVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMmFFcEpDaTl4ZUcxSVNHOXRZbTlKTTBGdk1teDJOMjk1VFV0cFJrTXhVak5VYWpGMlFVMHhjelpvTkVOSlFtMVpkRk5yWWpjMFRFY3ZTR05MV2toMUszZDBiM0VLVlNzdmFFOTBOMUJRUnk5M01EQTBTbTl3Vm5rS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA1YmVlZTg3LTJhYmEtNGFlYi1iZTdiLWI1NTgzYmIzMmMwZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVlVT1V6M2J5T056WVp5YjNzeDFCTEl2TUNxN290c2plSnNvOFdNaThoVk5RZ2NuelgxMlN4cGw="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d/kubeconfig?redacted=false method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JUbEJOVzFIVlZWV1lrRlFaVEYwQ2psblExSlVVMkUyU2xSc2RWcG9WV2RVYjJaSk1rWkhaVXRJVVRZNVZIbHBlR0V3YjAxcVdFRk1RbVk1ZVhwMk1rUlRRME5SYUhFeFNWRktiMkZZY2pBS2VXNUxTa2M0VTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUmFVcGFiSGhxU2s0NVdFaFZiR3BLTnpWaE5WVnRZeXMxTDBkNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGcVlVOXNDbFpVV25abVFVTXhPVEozZVZoaFFubExObVZ4VEhocVJtaEpkeTltUW5oeGIyZHdPRWd3VlVOSlVVUm5XWFIwY2pWUVJHOUdWVVZ2UjNsVVkyeDFaMHNLVEdOWFlYQmpkVkpMUzI0dldFaHNTWGwyU1UxUVVUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8yZGY5M2VjYi05ZWE4LTRjZDEtODM2Yy0zMDhjMDg4NjhlYzkuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctbGVnYWN5CiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3ktYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGdTMFdUVHVvanBibVNoUngyakFUMWp4dFZDTkhUbVR1Mk9CYXdmWHJxbVZ2MFJkeTFWcEw2dHRh"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NuVktUVFl6YmtaWFF6TTFTV2xQQ210MlZGVkdOWFZzTHpCUVQybGpaWFJqTWk5eVMzZExObFZqYjB4NFMyRnVlRGxuTlV4SVMzQXJNR05RZHpCdk9FZ3JabUY1U2tsNFNuaGlaV0Y2ZEZRS05IRXdWVU4wUTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGVUbEVkbnAwZG5kelJqZFBNQ3RwYTFvMk5tWlBiaXRCUzFoVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMmFFcEpDaTl4ZUcxSVNHOXRZbTlKTTBGdk1teDJOMjk1VFV0cFJrTXhVak5VYWpGMlFVMHhjelpvTkVOSlFtMVpkRk5yWWpjMFRFY3ZTR05MV2toMUszZDBiM0VLVlNzdmFFOTBOMUJRUnk5M01EQTBTbTl3Vm5rS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA1YmVlZTg3LTJhYmEtNGFlYi1iZTdiLWI1NTgzYmIzMmMwZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVlVT1V6M2J5T056WVp5YjNzeDFCTEl2TUNxN290c2plSnNvOFdNaThoVk5RZ2NuelgxMlN4cGw="}' headers: Content-Length: - - "1782" + - "1778" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,63 +1531,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d8955fc-bd54-456f-9038-a0a3b8da086f + - 3f2dd089-ccd3-4a99-845a-5753fd7ed99e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NuVktUVFl6YmtaWFF6TTFTV2xQQ210MlZGVkdOWFZzTHpCUVQybGpaWFJqTWk5eVMzZExObFZqYjB4NFMyRnVlRGxuTlV4SVMzQXJNR05RZHpCdk9FZ3JabUY1U2tsNFNuaGlaV0Y2ZEZRS05IRXdWVU4wUTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGVUbEVkbnAwZG5kelJqZFBNQ3RwYTFvMk5tWlBiaXRCUzFoVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMmFFcEpDaTl4ZUcxSVNHOXRZbTlKTTBGdk1teDJOMjk1VFV0cFJrTXhVak5VYWpGMlFVMHhjelpvTkVOSlFtMVpkRk5yWWpjMFRFY3ZTR05MV2toMUszZDBiM0VLVlNzdmFFOTBOMUJRUnk5M01EQTBTbTl3Vm5rS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA1YmVlZTg3LTJhYmEtNGFlYi1iZTdiLWI1NTgzYmIzMmMwZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVlVT1V6M2J5T056WVp5YjNzeDFCTEl2TUNxN290c2plSnNvOFdNaThoVk5RZ2NuelgxMlN4cGw="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9?with_additional_resources=true - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d/kubeconfig?redacted=false + method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NuVktUVFl6YmtaWFF6TTFTV2xQQ210MlZGVkdOWFZzTHpCUVQybGpaWFJqTWk5eVMzZExObFZqYjB4NFMyRnVlRGxuTlV4SVMzQXJNR05RZHpCdk9FZ3JabUY1U2tsNFNuaGlaV0Y2ZEZRS05IRXdWVU4wUTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGVUbEVkbnAwZG5kelJqZFBNQ3RwYTFvMk5tWlBiaXRCUzFoVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMmFFcEpDaTl4ZUcxSVNHOXRZbTlKTTBGdk1teDJOMjk1VFV0cFJrTXhVak5VYWpGMlFVMHhjelpvTkVOSlFtMVpkRk5yWWpjMFRFY3ZTR05MV2toMUszZDBiM0VLVlNzdmFFOTBOMUJRUnk5M01EQTBTbTl3Vm5rS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA1YmVlZTg3LTJhYmEtNGFlYi1iZTdiLWI1NTgzYmIzMmMwZC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1sZWdhY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLWxlZ2FjeS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVlVT1V6M2J5T056WVp5YjNzeDFCTEl2TUNxN290c2plSnNvOFdNaThoVk5RZ2NuelgxMlN4cGw="}' headers: Content-Length: - - "1603" + - "1778" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1543,61 +1563,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1020904e-92db-4e01-9467-11bbf6f5ba31 + - e451ad74-5db1-4e93-844b-ed111273e8a1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.953396Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d?with_additional_resources=true + method: DELETE response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.953396Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1567" + - "1602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,61 +1627,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cac0e3c4-3af6-4b3a-8a6b-7b242e547dfc + - 537b737c-0569-40b4-a48f-e912387fabd4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.953396Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"region":"fr-par", "id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.140862Z", - "updated_at":"2025-10-09T18:39:29.792944Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://2df93ecb-9ea8-4cd1-836c-308c08868ec9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.2df93ecb-9ea8-4cd1-836c-308c08868ec9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.128525Z", + "updated_at":"2025-10-15T16:33:27.953396Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-legacy", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.05beee87-2aba-4aeb-be7b-b5583bb32c0d.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"83a92f12-5a30-4839-9e41-57e2e4043b5e", - "commitment_ends_at":"2025-10-09T18:37:58.140873Z", "acl_available":true, "iam_nodes_group_id":"8a8a0f5f-4038-4a3d-9a60-e2b3f6ba0369", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"609ed341-cb2e-460c-baf7-4da42a944dba", + "commitment_ends_at":"2025-10-15T16:31:46.128538Z", "acl_available":true, "iam_nodes_group_id":"e7fcbe43-7ec2-4af4-b62f-3cd93e8f899c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:35 GMT + - Wed, 15 Oct 2025 16:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,20 +1689,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0843149f-9469-4d4b-9f48-120462fcb330 + - bf0862bb-29b2-4eda-8ff2-fd6f54ffd207 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2df93ecb-9ea8-4cd1-836c-308c08868ec9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/05beee87-2aba-4aeb-be7b-b5583bb32c0d method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2df93ecb-9ea8-4cd1-836c-308c08868ec9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"05beee87-2aba-4aeb-be7b-b5583bb32c0d","type":"not_found"}' headers: Content-Length: - "128" @@ -1689,9 +1711,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:40 GMT + - Wed, 15 Oct 2025 16:33:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,7 +1721,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b25fbc80-3649-438a-8b65-9eeaa064337d + - 0ad8e08a-4fe2-4373-bfb3-5678fb346894 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.golden index 9564e6b930..5db30747e8 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-legacy.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd056QTRNamN5TlZvWERUTTFNVEF3TnpBNE1qY3lOVm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCUDN3NEZ2QUl6enhJZEVvCk5QREtrVFpsK2ttUTNiVUlKRE9NZnhWTnErVE1COUFRdHdXbHRGSE1GUHpKMnlURHdMQU85RGZhcVdsVWNxUVgKMjRhR0dOQ2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUVVpGT2xadTE2WFVSeWlJVmRkOEx4Rmc5SGlEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFpaUlrCng3ZXJnMGdvQ01WK0x6c3NzUkxNNTljQjFybVZUNlp3d2JXMXRaMENJQVc1N291dlFUdFdTQzVlTUI4VE9QM1AKbVczRjY3cXF5RzVrWi9ibUxXR1gKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= - server: https://c32aeb97-c709-42ef-9852-5f66c5d4b404.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCSnVKTTYzbkZXQzM1SWlPCmt2VFVGNXVsLzBQT2ljZXRjMi9yS3dLNlVjb0x4S2FueDlnNUxIS3ArMGNQdzBvOEgrZmF5Skl4SnhiZWF6dFQKNHEwVUN0Q2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTeTlEdnp0dndzRjdPMCtpa1o2NmZPbitBS1hUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUF2aEpJCi9xeG1ISG9tYm9JM0FvMmx2N295TUtpRkMxUjNUajF2QU0xczZoNENJQm1ZdFNrYjc0TEcvSGNLWkh1K3d0b3EKVSsvaE90N1BQRy93MDA0Sm9wVnkKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-legacy contexts: - context: @@ -17,7 +17,7 @@ preferences: {} users: - name: cli-test-get-kubeconfig-legacy-admin user: - token: OE40N2sgt4lOSTUU9pCNEYtntfrcNfnj0Wt6Rd60qXmi62tBXKCHwXrf + token: YYUOUz3byONzYZyb3sx1BLIvMCq7otsjeJso8WMi8hVNQgcnzX12Sxpl 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd056QTRNamN5TlZvWERUTTFNVEF3TnpBNE1qY3lOVm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCUDN3NEZ2QUl6enhJZEVvCk5QREtrVFpsK2ttUTNiVUlKRE9NZnhWTnErVE1COUFRdHdXbHRGSE1GUHpKMnlURHdMQU85RGZhcVdsVWNxUVgKMjRhR0dOQ2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUVVpGT2xadTE2WFVSeWlJVmRkOEx4Rmc5SGlEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFpaUlrCng3ZXJnMGdvQ01WK0x6c3NzUkxNNTljQjFybVZUNlp3d2JXMXRaMENJQVc1N291dlFUdFdTQzVlTUI4VE9QM1AKbVczRjY3cXF5RzVrWi9ibUxXR1gKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://c32aeb97-c709-42ef-9852-5f66c5d4b404.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-legacy\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-legacy\n user: cli-test-get-kubeconfig-legacy-admin\n name: admin@cli-test-get-kubeconfig-legacy\ncurrent-context: admin@cli-test-get-kubeconfig-legacy\nkind: Config\npreferences: {}\nusers:\n- name: cli-test-get-kubeconfig-legacy-admin\n user:\n token: OE40N2sgt4lOSTUU9pCNEYtntfrcNfnj0Wt6Rd60qXmi62tBXKCHwXrf\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCSnVKTTYzbkZXQzM1SWlPCmt2VFVGNXVsLzBQT2ljZXRjMi9yS3dLNlVjb0x4S2FueDlnNUxIS3ArMGNQdzBvOEgrZmF5Skl4SnhiZWF6dFQKNHEwVUN0Q2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTeTlEdnp0dndzRjdPMCtpa1o2NmZPbitBS1hUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUF2aEpJCi9xeG1ISG9tYm9JM0FvMmx2N295TUtpRkMxUjNUajF2QU0xczZoNENJQm1ZdFNrYjc0TEcvSGNLWkh1K3d0b3EKVSsvaE90N1BQRy93MDA0Sm9wVnkKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://05beee87-2aba-4aeb-be7b-b5583bb32c0d.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-legacy\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-legacy\n user: cli-test-get-kubeconfig-legacy-admin\n name: admin@cli-test-get-kubeconfig-legacy\ncurrent-context: admin@cli-test-get-kubeconfig-legacy\nkind: Config\npreferences: {}\nusers:\n- name: cli-test-get-kubeconfig-legacy-admin\n user:\n token: YYUOUz3byONzYZyb3sx1BLIvMCq7otsjeJso8WMi8hVNQgcnzX12Sxpl\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.cassette.yaml index 73b9ad557b..cff35a6a09 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ece6b8f-dca6-45cc-b1c0-37df5605f733 + - 4cae2631-ce2c-4a4c-9b73-28d142813d2c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", "name":"pn-laughing-snyder", + body: '{"id":"42754679-2205-42d7-adf9-0686b77365c3", "name":"pn-laughing-rosalind", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:56.818500Z", "updated_at":"2025-10-09T18:37:56.818500Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"8368deed-2a89-4677-843a-da3a71e08289", - "created_at":"2025-10-09T18:37:56.818500Z", "updated_at":"2025-10-09T18:37:56.818500Z", - "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"cf11ec14-57d3-45a3-8057-35f57a5716f5", "created_at":"2025-10-09T18:37:56.818500Z", - "updated_at":"2025-10-09T18:37:56.818500Z", "subnet":"fd58:6b70:2d5a:3c4::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", + "created_at":"2025-10-15T16:31:45.500021Z", "updated_at":"2025-10-15T16:31:45.500021Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4af4ec78-6237-40cd-adf7-46feccb6527f", + "created_at":"2025-10-15T16:31:45.500021Z", "updated_at":"2025-10-15T16:31:45.500021Z", + "subnet":"172.17.108.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"4cfba854-6ba7-4af1-afff-f0d904e29d35", "created_at":"2025-10-15T16:31:45.500021Z", + "updated_at":"2025-10-15T16:31:45.500021Z", "subnet":"fd58:6b70:2d5a:1626::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", "name":"pn-laughing-snyder", + body: '{"id":"42754679-2205-42d7-adf9-0686b77365c3", "name":"pn-laughing-rosalind", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:56.818500Z", "updated_at":"2025-10-09T18:37:56.818500Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"8368deed-2a89-4677-843a-da3a71e08289", - "created_at":"2025-10-09T18:37:56.818500Z", "updated_at":"2025-10-09T18:37:56.818500Z", - "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"cf11ec14-57d3-45a3-8057-35f57a5716f5", "created_at":"2025-10-09T18:37:56.818500Z", - "updated_at":"2025-10-09T18:37:56.818500Z", "subnet":"fd58:6b70:2d5a:3c4::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", + "created_at":"2025-10-15T16:31:45.500021Z", "updated_at":"2025-10-15T16:31:45.500021Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4af4ec78-6237-40cd-adf7-46feccb6527f", + "created_at":"2025-10-15T16:31:45.500021Z", "updated_at":"2025-10-15T16:31:45.500021Z", + "subnet":"172.17.108.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"4cfba854-6ba7-4af1-afff-f0d904e29d35", "created_at":"2025-10-15T16:31:45.500021Z", + "updated_at":"2025-10-15T16:31:45.500021Z", "subnet":"fd58:6b70:2d5a:1626::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1137" + - "1141" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:57 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b8e9b1a-656f-4aee-8563-6fab4bcc5a6e + - 57b6ad81-157e-43bf-a9ee-48516ddd1653 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:57.859405Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.335467Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,1092 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:57.859405Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.335467Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d58a015-0cd0-46a7-985e-9d7255603adf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:57.859405Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:57.859405Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 64666df2-eaec-45ea-9bac-b0b8bc1de045 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6eafaebe-9626-456e-bcd9-12f0036f19f6 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e82ce21-f1e6-4d5f-84e0-19ea0b97032f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b29e9756-e2c9-41c6-8425-0d6c1857701d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 728dd6a8-204c-4269-b22c-8bb12d04ab2e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 56f4180f-1bab-426c-9336-6f6dfffd4bbf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ec0d6cc-1860-40d5-9ce0-3f79128cfeea - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1b5b3f9-927c-47ad-a8e8-66fc44c499cd - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af0501d6-586e-45e4-9e55-91d4fe361b0a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b570a24c-8382-4d45-a8f7-935680ae09fc - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d2951c5-d5a3-4c37-9ad2-6130885e2d1e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a7ee272-d6b0-42d4-9f87-bb1258af2073 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8e08b7c-e7af-4639-a064-1bcfe1036653 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da6838ba-0757-4f59-b7cc-6167146a2a4f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 95a49801-99b0-410d-bf26-17880544e61c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62d7c1a6-0111-4c20-875a-280c800b023d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 - method: GET - response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:19 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cc0db78-c9bd-4727-b0e8-511525cbfd80 + - bf0c644d-26b8-471a-8c8e-430190330750 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.335467Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.335467Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80025183-6502-448d-9fa7-42e44a434946 + - 012ccca0-668f-41bc-a7a1-5036e4bd576e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f254ed7a-ba8c-416c-b93b-dfc58fea417a + - b324bdcb-935d-4f09-b4ac-d5b236b2a8d5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:34 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 019204d7-733e-451c-ae68-13bf9701838e + - ec37dfd2-9bfe-44aa-bb2b-c7cca8b8bc2c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:39 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21b77fb8-ceaa-4db3-bcd0-77970eadc9ba + - 3c5556f3-b026-4133-99ec-b1700e84bb90 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:44 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7f79ec5-9a01-4de1-9f63-64a0b8ec3b63 + - 131413ff-7e7d-4f3f-aed7-a29406a26b95 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:49 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0b13254-1793-4ec2-a2f3-9357b2788301 + - 20ffb37b-0db3-4cd0-aad1-2d0749b640e1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:54 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5d95730-e18b-488d-a569-ca45784aed87 + - 65f33de7-2d52-404c-a2d3-716b19c2fbc1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:59 GMT + - Wed, 15 Oct 2025 16:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1747,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00ee992-57f3-4aee-a652-f6928886462f + - 1ec601c3-d40a-4166-9383-39ac01743535 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:04 GMT + - Wed, 15 Oct 2025 16:32:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69afb065-e118-43ae-8a87-5f20a720e51a + - f552d367-964f-4b35-be3c-0c7e06b75df1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:09 GMT + - Wed, 15 Oct 2025 16:32:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 888aef50-3743-4b4e-9550-be0fe25b91ce + - 3fe3b756-974e-410d-bd13-2f6f9bef822d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:14 GMT + - Wed, 15 Oct 2025 16:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1933,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 456ab2c9-0e04-4c6a-b968-5a6f2fe782e9 + - 452fde49-3d7d-4096-8788-ca6e953422df status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:19 GMT + - Wed, 15 Oct 2025 16:32:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1aed5a5-9406-431f-9755-616e757f6943 + - 32321463-4074-4392-ae82-c6cf7c7fef13 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:24 GMT + - Wed, 15 Oct 2025 16:32:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - def8ecad-f62b-4aa1-89e8-50596fc5aa2c + - 9a6fa09c-266b-4ac5-a024-1e070a2cae12 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:30 GMT + - Wed, 15 Oct 2025 16:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2119,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5299e3c0-fcd7-4190-a0af-07ff7940f9a4 + - 56fc596f-8ac3-4f75-8e6d-59ea55743113 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:35 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2181,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e108fa9-bad0-4509-8dd2-96a2a2bdc3e3 + - 4e35ee70-d2d6-4280-b1fd-94b31aaf5f0c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:40 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2243,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fd34b96-90b3-4174-9803-be9a8a7e7da1 + - da234fcb-63a4-49d6-9d9f-02c2f088ecbe status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:45 GMT + - Wed, 15 Oct 2025 16:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2305,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d35b60ff-9f44-4fb1-802d-772fe91dc564 + - 2eea5b19-1140-42f5-8a1d-548aaeff9069 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:50 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2367,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5faafa28-f3f4-465a-9a13-c4606ee7e78a + - fdc1964c-65ee-4626-a422-5297db1c52e4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:37:58.463958Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:31:46.895015Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2429,61 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7686255b-c0f4-4f89-848f-0bf174949879 + - eaeae7e2-4499-452b-9e4f-839023a202f1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:40:55.691641Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:18.442076Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:40:55.691641Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:18.442076Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1564" + - "1563" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2491,31 +1437,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98d7c70b-e520-4ae1-a8b8-420c8d22f2d3 + - 4d54061c-1a92-4e0a-8236-215ab14101f2 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFRqRnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6Rk9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FtOTFUMjFaUkRoNlZ6UTBiRXRWQ21wcFNIQkpUMlZXVmtzMlRXcEdPVWhQWVRKSFVYYzFjMEpEWW1kSlJGQlRURkEwZEhjeVJVOXdZWGRpVm04MmNHRXJabXBtUVdkWGVVTjRObTgwVTFVS1JVNUlTU3M0Tm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVRIVmhUbFZZVm5aNk1qQXhXVEpLVEdVeE4ybEpZWFJhV0c1RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGeEx6QllDamx3ZERoVFoxQlhiVXR5YWtvMUszVmpSeXRFZFZwaGJUaEZLMFpqZDJSRVRrOWlXVXhoWjBOSlJHeGxSSFF5WWxkd0t6WmhNMnhaZFc5dmRsQmlVRXdLVW01UVdXbEJUMFF4TTIxaGRGRXZWMmRoU25NS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzIxODY4OGQ5LWJjYjAtNDU4OS04ZDg1LWI3MjFhMDlkNjljOS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ3FmWGF5alpKNDdFdG9zdmdJRjlqUEczVW5ZWFBNTkZRZ3pMNEJxOE1HUXFOd244cE9XT0REejE="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NWcDZjVzVhYldKVkwzVlpiWFl2Q2tSbVRsaGxhMG8zUW1obmVFTnFNVXhrVW14WFFWQnNkV28zZWpjNVZpdHhXRGhPVG5oaFZXSjVTRXRTVURGaFUwcDJTMWxMU2t3clRGTmpORmx3TW0wS2F6Sk1ibWRXUzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGFETXZWRW93UjBoTU9VYzFUM0ZMZG10MmFHbEdZMmxhVGs1VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGbk5rbHNDbVJTU21sT1VHWlhZMUI2SzJKMVRsaEdlVlE1ZEdaVFMxQk5RMEpWU0U0NFVVTTNNbmhNTkVOSlIxUXpaa1ZXVTJwV2EzaDZPV3h5UW5SNmVWTm9aREVLV0dneWNtTm1kaXR4T0VGRk5rSkVZM1pDU0ZvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzVjMzEyNTNiLTFhMmItNGJjNy1iZmRmLTAyMGNkNDYxM2M2OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFRqRnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6Rk9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FtOTFUMjFaUkRoNlZ6UTBiRXRWQ21wcFNIQkpUMlZXVmtzMlRXcEdPVWhQWVRKSFVYYzFjMEpEWW1kSlJGQlRURkEwZEhjeVJVOXdZWGRpVm04MmNHRXJabXBtUVdkWGVVTjRObTgwVTFVS1JVNUlTU3M0Tm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVRIVmhUbFZZVm5aNk1qQXhXVEpLVEdVeE4ybEpZWFJhV0c1RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGeEx6QllDamx3ZERoVFoxQlhiVXR5YWtvMUszVmpSeXRFZFZwaGJUaEZLMFpqZDJSRVRrOWlXVXhoWjBOSlJHeGxSSFF5WWxkd0t6WmhNMnhaZFc5dmRsQmlVRXdLVW01UVdXbEJUMFF4TTIxaGRGRXZWMmRoU25NS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzIxODY4OGQ5LWJjYjAtNDU4OS04ZDg1LWI3MjFhMDlkNjljOS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ3FmWGF5alpKNDdFdG9zdmdJRjlqUEczVW5ZWFBNTkZRZ3pMNEJxOE1HUXFOd244cE9XT0REejE="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NWcDZjVzVhYldKVkwzVlpiWFl2Q2tSbVRsaGxhMG8zUW1obmVFTnFNVXhrVW14WFFWQnNkV28zZWpjNVZpdHhXRGhPVG5oaFZXSjVTRXRTVURGaFUwcDJTMWxMU2t3clRGTmpORmx3TW0wS2F6Sk1ibWRXUzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGFETXZWRW93UjBoTU9VYzFUM0ZMZG10MmFHbEdZMmxhVGs1VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGbk5rbHNDbVJTU21sT1VHWlhZMUI2SzJKMVRsaEdlVlE1ZEdaVFMxQk5RMEpWU0U0NFVVTTNNbmhNTkVOSlIxUXpaa1ZXVTJwV2EzaDZPV3h5UW5SNmVWTm9aREVLV0dneWNtTm1kaXR4T0VGRk5rSkVZM1pDU0ZvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzVjMzEyNTNiLTFhMmItNGJjNy1iZmRmLTAyMGNkNDYxM2M2OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1778" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2523,31 +1469,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00a883a-cc26-49ef-bea1-3fca87cfd945 + - bef1bd71-46a0-4c1d-bddc-d4a297a79630 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFRqRnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6Rk9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FtOTFUMjFaUkRoNlZ6UTBiRXRWQ21wcFNIQkpUMlZXVmtzMlRXcEdPVWhQWVRKSFVYYzFjMEpEWW1kSlJGQlRURkEwZEhjeVJVOXdZWGRpVm04MmNHRXJabXBtUVdkWGVVTjRObTgwVTFVS1JVNUlTU3M0Tm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVRIVmhUbFZZVm5aNk1qQXhXVEpLVEdVeE4ybEpZWFJhV0c1RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGeEx6QllDamx3ZERoVFoxQlhiVXR5YWtvMUszVmpSeXRFZFZwaGJUaEZLMFpqZDJSRVRrOWlXVXhoWjBOSlJHeGxSSFF5WWxkd0t6WmhNMnhaZFc5dmRsQmlVRXdLVW01UVdXbEJUMFF4TTIxaGRGRXZWMmRoU25NS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzIxODY4OGQ5LWJjYjAtNDU4OS04ZDg1LWI3MjFhMDlkNjljOS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ3FmWGF5alpKNDdFdG9zdmdJRjlqUEczVW5ZWFBNTkZRZ3pMNEJxOE1HUXFOd244cE9XT0REejE="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NWcDZjVzVhYldKVkwzVlpiWFl2Q2tSbVRsaGxhMG8zUW1obmVFTnFNVXhrVW14WFFWQnNkV28zZWpjNVZpdHhXRGhPVG5oaFZXSjVTRXRTVURGaFUwcDJTMWxMU2t3clRGTmpORmx3TW0wS2F6Sk1ibWRXUzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGFETXZWRW93UjBoTU9VYzFUM0ZMZG10MmFHbEdZMmxhVGs1VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGbk5rbHNDbVJTU21sT1VHWlhZMUI2SzJKMVRsaEdlVlE1ZEdaVFMxQk5RMEpWU0U0NFVVTTNNbmhNTkVOSlIxUXpaa1ZXVTJwV2EzaDZPV3h5UW5SNmVWTm9aREVLV0dneWNtTm1kaXR4T0VGRk5rSkVZM1pDU0ZvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzVjMzEyNTNiLTFhMmItNGJjNy1iZmRmLTAyMGNkNDYxM2M2OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFRqRnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6Rk9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FtOTFUMjFaUkRoNlZ6UTBiRXRWQ21wcFNIQkpUMlZXVmtzMlRXcEdPVWhQWVRKSFVYYzFjMEpEWW1kSlJGQlRURkEwZEhjeVJVOXdZWGRpVm04MmNHRXJabXBtUVdkWGVVTjRObTgwVTFVS1JVNUlTU3M0Tm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVRIVmhUbFZZVm5aNk1qQXhXVEpLVEdVeE4ybEpZWFJhV0c1RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGeEx6QllDamx3ZERoVFoxQlhiVXR5YWtvMUszVmpSeXRFZFZwaGJUaEZLMFpqZDJSRVRrOWlXVXhoWjBOSlJHeGxSSFF5WWxkd0t6WmhNMnhaZFc5dmRsQmlVRXdLVW01UVdXbEJUMFF4TTIxaGRGRXZWMmRoU25NS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzIxODY4OGQ5LWJjYjAtNDU4OS04ZDg1LWI3MjFhMDlkNjljOS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ3FmWGF5alpKNDdFdG9zdmdJRjlqUEczVW5ZWFBNTkZRZ3pMNEJxOE1HUXFOd244cE9XT0REejE="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NWcDZjVzVhYldKVkwzVlpiWFl2Q2tSbVRsaGxhMG8zUW1obmVFTnFNVXhrVW14WFFWQnNkV28zZWpjNVZpdHhXRGhPVG5oaFZXSjVTRXRTVURGaFUwcDJTMWxMU2t3clRGTmpORmx3TW0wS2F6Sk1ibWRXUzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGFETXZWRW93UjBoTU9VYzFUM0ZMZG10MmFHbEdZMmxhVGs1VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGbk5rbHNDbVJTU21sT1VHWlhZMUI2SzJKMVRsaEdlVlE1ZEdaVFMxQk5RMEpWU0U0NFVVTTNNbmhNTkVOSlIxUXpaa1ZXVTJwV2EzaDZPV3h5UW5SNmVWTm9aREVLV0dneWNtTm1kaXR4T0VGRk5rSkVZM1pDU0ZvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzVjMzEyNTNiLTFhMmItNGJjNy1iZmRmLTAyMGNkNDYxM2M2OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy1zaW1wbGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1778" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2555,63 +1501,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2048b54a-d8a0-4057-8dfa-9bbd4122948e + - 2dee67ed-6f77-455a-9c61-8113f50cccd0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1603" + - "1602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2619,61 +1565,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f884a295-da51-494b-b9d7-2990f2fbbd71 + - ce2a0157-19d5-4818-97e8-761763e67829 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2681,61 +1627,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62cef60f-d969-4228-a202-b97630360190 + - 349ddb50-1657-4799-bac3-cb88fc48b888 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"region":"fr-par", "id":"218688d9-bcb0-4589-8d85-b721a09d69c9", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.859405Z", - "updated_at":"2025-10-09T18:41:00.593089Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.218688d9-bcb0-4589-8d85-b721a09d69c9.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.335467Z", + "updated_at":"2025-10-15T16:33:23.322753Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-simple", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.5c31253b-1a2b-4bc7-bfdf-020cd4613c68.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"642c7d20-e8c3-4449-b560-9e5bbb704fc0", - "commitment_ends_at":"2025-10-09T18:37:57.859420Z", "acl_available":true, "iam_nodes_group_id":"23b066d9-8513-4291-ba8f-3ed4192bdcc4", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"42754679-2205-42d7-adf9-0686b77365c3", + "commitment_ends_at":"2025-10-15T16:31:46.335475Z", "acl_available":true, "iam_nodes_group_id":"acb81722-1160-4b13-b63a-2ae0e566f23f", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:05 GMT + - Wed, 15 Oct 2025 16:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,20 +1689,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fecd431f-0361-4fd2-9a87-8df653645f37 + - c2da139c-4e2e-4e66-94c7-26d407274f89 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"218688d9-bcb0-4589-8d85-b721a09d69c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/218688d9-bcb0-4589-8d85-b721a09d69c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5c31253b-1a2b-4bc7-bfdf-020cd4613c68 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"218688d9-bcb0-4589-8d85-b721a09d69c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"5c31253b-1a2b-4bc7-bfdf-020cd4613c68","type":"not_found"}' headers: Content-Length: - "128" @@ -2765,9 +1711,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:10 GMT + - Wed, 15 Oct 2025 16:33:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,7 +1721,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28fa5e69-18ad-4697-9680-28850f4393f6 + - 972f9678-ac40-4338-90a0-06a8aa8b046d status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.golden index 1b1c61be66..559b0acccf 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-simple.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxTjFvWERUTTFNVEF3T0RFNE16YzFOMW93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCQm91T21ZRDh6VzQ0bEtVCmppSHBJT2VWVks2TWpGOUhPYTJHUXc1c0JDYmdJRFBTTFA0dHcyRU9wYXdiVm82cGErZmpmQWdXeUN4Nm80U1UKRU5ISSs4NmpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUTHVhTlVYVnZ6MjAxWTJKTGUxN2lJYXRaWG5EQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFxLzBYCjlwdDhTZ1BXbUtyako1K3VjRytEdVphbThFK0Zjd2RETk9iWUxhZ0NJRGxlRHQyYldwKzZhM2xZdW9vdlBiUEwKUm5QWWlBT0QxM21hdFEvV2dhSnMKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= - server: https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCSVp6cW5abWJVL3VZbXYvCkRmTlhla0o3QmhneENqMUxkUmxXQVBsdWo3ejc5VitxWDhOTnhhVWJ5SEtSUDFhU0p2S1lLSkwrTFNjNFlwMm0KazJMbmdWS2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTaDMvVEowR0hMOUc1T3FLdmt2aGlGY2laTk5UQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnNklsCmRSSmlOUGZXY1B6K2J1TlhGeVQ5dGZTS1BNQ0JVSE44UUM3MnhMNENJR1QzZkVWU2pWa3h6OWxyQnR6eVNoZDEKWGgycmNmditxOEFFNkJEY3ZCSFoKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-simple contexts: - context: @@ -29,4 +29,4 @@ users: interactiveMode: Never 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxTjFvWERUTTFNVEF3T0RFNE16YzFOMW93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCQm91T21ZRDh6VzQ0bEtVCmppSHBJT2VWVks2TWpGOUhPYTJHUXc1c0JDYmdJRFBTTFA0dHcyRU9wYXdiVm82cGErZmpmQWdXeUN4Nm80U1UKRU5ISSs4NmpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUTHVhTlVYVnZ6MjAxWTJKTGUxN2lJYXRaWG5EQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFxLzBYCjlwdDhTZ1BXbUtyako1K3VjRytEdVphbThFK0Zjd2RETk9iWUxhZ0NJRGxlRHQyYldwKzZhM2xZdW9vdlBiUEwKUm5QWWlBT0QxM21hdFEvV2dhSnMKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://218688d9-bcb0-4589-8d85-b721a09d69c9.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-simple\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-simple\n user: cli-config-00000000\n name: admin@cli-test-get-kubeconfig-simple\ncurrent-context: admin@cli-test-get-kubeconfig-simple\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-00000000\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - k8s\n - exec-credential\n command: scw\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCSVp6cW5abWJVL3VZbXYvCkRmTlhla0o3QmhneENqMUxkUmxXQVBsdWo3ejc5VitxWDhOTnhhVWJ5SEtSUDFhU0p2S1lLSkwrTFNjNFlwMm0KazJMbmdWS2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTaDMvVEowR0hMOUc1T3FLdmt2aGlGY2laTk5UQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFnNklsCmRSSmlOUGZXY1B6K2J1TlhGeVQ5dGZTS1BNQ0JVSE44UUM3MnhMNENJR1QzZkVWU2pWa3h6OWxyQnR6eVNoZDEKWGgycmNmditxOEFFNkJEY3ZCSFoKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://5c31253b-1a2b-4bc7-bfdf-020cd4613c68.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-simple\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-simple\n user: cli-config-00000000\n name: admin@cli-test-get-kubeconfig-simple\ncurrent-context: admin@cli-test-get-kubeconfig-simple\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-00000000\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - k8s\n - exec-credential\n command: scw\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.cassette.yaml index e8b2d92fd4..8822a11317 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 999dfc9a-2386-421f-80ee-757954e3e854 + - 173d3e7f-e555-4b2c-9fcc-24b85b81d7e0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", "name":"pn-focused-bartik", + body: '{"id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "name":"pn-upbeat-meitner", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.431912Z", "updated_at":"2025-10-09T18:37:57.431912Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4966ed8d-32ed-437b-9cff-c44ea3b33b98", - "created_at":"2025-10-09T18:37:57.431912Z", "updated_at":"2025-10-09T18:37:57.431912Z", - "subnet":"172.17.68.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"b731a6eb-584c-4619-9d3d-7c688d57e754", "created_at":"2025-10-09T18:37:57.431912Z", - "updated_at":"2025-10-09T18:37:57.431912Z", "subnet":"fd58:6b70:2d5a:4b1c::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", + "created_at":"2025-10-15T16:31:45.407727Z", "updated_at":"2025-10-15T16:31:45.407727Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"9f603c5a-95f5-4651-b2d4-d37b5bab020a", + "created_at":"2025-10-15T16:31:45.407727Z", "updated_at":"2025-10-15T16:31:45.407727Z", + "subnet":"172.17.104.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"a941734e-bc63-4aeb-9155-1f834a1a5a0c", "created_at":"2025-10-15T16:31:45.407727Z", + "updated_at":"2025-10-15T16:31:45.407727Z", "subnet":"fd58:6b70:2d5a:237c::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", "name":"pn-focused-bartik", + body: '{"id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "name":"pn-upbeat-meitner", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.431912Z", "updated_at":"2025-10-09T18:37:57.431912Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"4966ed8d-32ed-437b-9cff-c44ea3b33b98", - "created_at":"2025-10-09T18:37:57.431912Z", "updated_at":"2025-10-09T18:37:57.431912Z", - "subnet":"172.17.68.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"b731a6eb-584c-4619-9d3d-7c688d57e754", "created_at":"2025-10-09T18:37:57.431912Z", - "updated_at":"2025-10-09T18:37:57.431912Z", "subnet":"fd58:6b70:2d5a:4b1c::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", + "created_at":"2025-10-15T16:31:45.407727Z", "updated_at":"2025-10-15T16:31:45.407727Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"9f603c5a-95f5-4651-b2d4-d37b5bab020a", + "created_at":"2025-10-15T16:31:45.407727Z", "updated_at":"2025-10-15T16:31:45.407727Z", + "subnet":"172.17.104.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"a941734e-bc63-4aeb-9155-1f834a1a5a0c", "created_at":"2025-10-15T16:31:45.407727Z", + "updated_at":"2025-10-15T16:31:45.407727Z", "subnet":"fd58:6b70:2d5a:237c::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1137" + - "1138" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:58 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d9b982f-5c06-4332-b5e0-e5e118f30040 + - e107a06c-c9cd-4e51-9e2b-f22f376d6235 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.281353Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.379925Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,38 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.281353Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.379925Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:58 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd7db202-ba1a-4b4a-b036-a31393306dff + - e0451dbd-1c94-41aa-9721-ca0a99beebfd status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.281353Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.379925Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.281353Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.379925Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1534" + - "1533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:58 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 068aa5d0-2d9e-4b32-805b-0319b7990109 + - a2f82e18-743c-4051-aa34-2d5c8ca24e25 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:03 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b01cf91-32a5-483e-9fd2-82d108f4cd78 + - 1e46d403-6737-4f20-9514-9164a89fffff status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:08 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05f58807-c1ee-4aa8-aae1-ea424ca7088e + - abb2345c-d2cf-49f3-ae00-e8e6531db8f5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:13 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc38e805-edfb-4355-92d4-edbc08f9fad4 + - 070f3f81-bfe8-46f9-bfe7-fd6b89a2d915 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:18 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0782f2ed-d02b-4193-abff-b75e9c3c119c + - d6a19cfd-1dcc-4751-9bda-dc08c24e4f4f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:23 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f23c04c-3faa-4bc9-ba4a-574089545113 + - c3efc52d-6b21-49a8-ad4f-4b95d437f147 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:28 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2866ef56-7396-4462-a057-cdf891c46a52 + - ffc768a7-10f9-4021-91bc-a00b67190bb2 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:33 GMT + - Wed, 15 Oct 2025 16:32:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a94a8dc8-f337-41c9-9017-b0df7bda638b + - 4fa72d55-ab5e-4989-8d42-59e51c471449 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:38 GMT + - Wed, 15 Oct 2025 16:32:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 841e65f7-1d4f-4a12-ad77-d99c57fa9b8b + - 244672e1-1602-4985-80f8-34f8c46b632e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:43 GMT + - Wed, 15 Oct 2025 16:32:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ee20cc5-95e8-4f92-92f6-67ca0b3b29d1 + - 840bc704-1465-4c60-8189-04c7a0471df6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:49 GMT + - Wed, 15 Oct 2025 16:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d6f51ed-f425-46e2-af28-be8bfdd84f2b + - 88983c49-a668-4d5a-97af-8fae6e460bf8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:54 GMT + - Wed, 15 Oct 2025 16:32:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e368b11a-6ed8-4d6e-97ef-319e65c64b0b + - cf25855b-9e84-4411-bc35-8ff9572cbc57 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:59 GMT + - Wed, 15 Oct 2025 16:32:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 676bf839-e1f3-4823-9991-40fd05eb02f6 + - c3dfe11e-1816-4d07-b2e1-7b6aaf061fa6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:04 GMT + - Wed, 15 Oct 2025 16:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 927ea3bc-31fa-4535-a0fb-6f773ab0ca57 + - bf1acfb9-6a2f-4ff6-81ee-35b7357317cb status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:09 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3afb325-1110-4722-9d14-d4dfe850a0bd + - 3e71e281-5587-44c6-8f91-a7a1d77a9f89 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:14 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24a8b812-e0b6-4160-aee7-6f342a774057 + - f8a2dc3b-4e88-48fa-afbb-deb55051efc4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:19 GMT + - Wed, 15 Oct 2025 16:33:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71eeba03-7a2a-479f-859f-3e8a927fafe7 + - 90157449-1e37-46f6-9ac5-3321b77289a8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:37:58.824054Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:31:46.975629Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:33:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 772e2929-cf7e-4d7b-afc4-0a9d60cbdb33 + - 42e4a614-631d-468c-bd3d-870c46286f95 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:26.992715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:15.191691Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:26.992715Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:15.191691Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,31 +1375,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e55a895-c2e2-4995-b805-2acc988cdb07 + - c912369c-33e3-4dd9-826c-06cbba631c55 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JXZEVSMk1yUjNWeFFrTnFUSEJIQ2sxTGJIWnBVaXRCZGpWWGNqTkRZbko2YTFCRmNEUTBlaTlRV0dvd1ZHeFVaamhaTmpsTldGWlFSbXhaTDNOb2NWWjJkVUZoUkZsblJsaDVWRmxTVW13S2ExUm5abHB2UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWMwdzRNVFVyUm1kek5IRkhTR2RCZFhwNFdsQlFRbkU1WkM5NlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGelNqaHdDblZ5V0U0MU1HYzVZa00yUlM5cVlqaFhhV012VUVST1RtUjNaVmx6UVROclUxZE9jSGxaVVVOSlVVTnlja2RoVHpoM1Z6QnRkV3h5VkZkdVNuZ3hZV1lLVkRCTEsxRktjMFZ1UkVsM1EwSjRRMjFJTWtkWWR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly9jYWUyMDkxYS00ZjdmLTQ2NjEtODYwOC05ZDM2ODZlZjhiNGMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1lbnZzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEZ3WHM2MTZXWHhXWnQ5T2FoOUJ0V2JoTnhOeERUa0pmcHBGb0VDWDBYcnllckFKSEZYcUJsbmdz"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWnpOMkpMVlVFMFRWQmpZVlJaQ21kR1duVmxXWFl3Wmt4c1dqUldURzlFUlV0MmJVZFJaa3htWm5OSVRIQnJWelprTkRWWllUQjZhbHBIUjFJd2JGbEZURzl4Ylc4dlJHOXJPV0ZVWkdVS01HMDNjV3RwVDJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNFTXlWSEpzZVZoNVNteG1VbHB4VGxCR2FXeG9NVEJ6U0M5RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGM1NuaEJDbGRwVWxkc0wyRjZiVU53Vm1sdWJrSkhXR2xoYzFCNk16VTBkRk5IYVZBMmMyMXdXVzAzVlVOSlNFZDFlbmRJZEVZNVJVeFBXV05aVFc5MmVHVmpPRmtLVFVoSFZsZFRORmxYTUdWVlRHWllRVXA0TVZZS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNzFmYjc1LTAyZGMtNDVmMy1hZjlkLTMyNGU3MDM4NTI4My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JXZEVSMk1yUjNWeFFrTnFUSEJIQ2sxTGJIWnBVaXRCZGpWWGNqTkRZbko2YTFCRmNEUTBlaTlRV0dvd1ZHeFVaamhaTmpsTldGWlFSbXhaTDNOb2NWWjJkVUZoUkZsblJsaDVWRmxTVW13S2ExUm5abHB2UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWMwdzRNVFVyUm1kek5IRkhTR2RCZFhwNFdsQlFRbkU1WkM5NlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGelNqaHdDblZ5V0U0MU1HYzVZa00yUlM5cVlqaFhhV012VUVST1RtUjNaVmx6UVROclUxZE9jSGxaVVVOSlVVTnlja2RoVHpoM1Z6QnRkV3h5VkZkdVNuZ3hZV1lLVkRCTEsxRktjMFZ1UkVsM1EwSjRRMjFJTWtkWWR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly9jYWUyMDkxYS00ZjdmLTQ2NjEtODYwOC05ZDM2ODZlZjhiNGMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1lbnZzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEZ3WHM2MTZXWHhXWnQ5T2FoOUJ0V2JoTnhOeERUa0pmcHBGb0VDWDBYcnllckFKSEZYcUJsbmdz"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWnpOMkpMVlVFMFRWQmpZVlJaQ21kR1duVmxXWFl3Wmt4c1dqUldURzlFUlV0MmJVZFJaa3htWm5OSVRIQnJWelprTkRWWllUQjZhbHBIUjFJd2JGbEZURzl4Ylc4dlJHOXJPV0ZVWkdVS01HMDNjV3RwVDJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNFTXlWSEpzZVZoNVNteG1VbHB4VGxCR2FXeG9NVEJ6U0M5RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGM1NuaEJDbGRwVWxkc0wyRjZiVU53Vm1sdWJrSkhXR2xoYzFCNk16VTBkRk5IYVZBMmMyMXdXVzAzVlVOSlNFZDFlbmRJZEVZNVJVeFBXV05aVFc5MmVHVmpPRmtLVFVoSFZsZFRORmxYTUdWVlRHWllRVXA0TVZZS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNzFmYjc1LTAyZGMtNDVmMy1hZjlkLTMyNGU3MDM4NTI4My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1806" + - "1746" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1407,31 +1407,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44d3c737-b866-4e26-a89d-210516617c4c + - aa12ae7d-13b1-4c45-afe1-4a7455152006 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JXZEVSMk1yUjNWeFFrTnFUSEJIQ2sxTGJIWnBVaXRCZGpWWGNqTkRZbko2YTFCRmNEUTBlaTlRV0dvd1ZHeFVaamhaTmpsTldGWlFSbXhaTDNOb2NWWjJkVUZoUkZsblJsaDVWRmxTVW13S2ExUm5abHB2UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWMwdzRNVFVyUm1kek5IRkhTR2RCZFhwNFdsQlFRbkU1WkM5NlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGelNqaHdDblZ5V0U0MU1HYzVZa00yUlM5cVlqaFhhV012VUVST1RtUjNaVmx6UVROclUxZE9jSGxaVVVOSlVVTnlja2RoVHpoM1Z6QnRkV3h5VkZkdVNuZ3hZV1lLVkRCTEsxRktjMFZ1UkVsM1EwSjRRMjFJTWtkWWR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly9jYWUyMDkxYS00ZjdmLTQ2NjEtODYwOC05ZDM2ODZlZjhiNGMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1lbnZzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEZ3WHM2MTZXWHhXWnQ5T2FoOUJ0V2JoTnhOeERUa0pmcHBGb0VDWDBYcnllckFKSEZYcUJsbmdz"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWnpOMkpMVlVFMFRWQmpZVlJaQ21kR1duVmxXWFl3Wmt4c1dqUldURzlFUlV0MmJVZFJaa3htWm5OSVRIQnJWelprTkRWWllUQjZhbHBIUjFJd2JGbEZURzl4Ylc4dlJHOXJPV0ZVWkdVS01HMDNjV3RwVDJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNFTXlWSEpzZVZoNVNteG1VbHB4VGxCR2FXeG9NVEJ6U0M5RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGM1NuaEJDbGRwVWxkc0wyRjZiVU53Vm1sdWJrSkhXR2xoYzFCNk16VTBkRk5IYVZBMmMyMXdXVzAzVlVOSlNFZDFlbmRJZEVZNVJVeFBXV05aVFc5MmVHVmpPRmtLVFVoSFZsZFRORmxYTUdWVlRHWllRVXA0TVZZS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNzFmYjc1LTAyZGMtNDVmMy1hZjlkLTMyNGU3MDM4NTI4My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOUVSVFJOZW1NeFQwWnZXRVJVVFRGTlZFRjNUMFJGTkUxNll6RlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JXZEVSMk1yUjNWeFFrTnFUSEJIQ2sxTGJIWnBVaXRCZGpWWGNqTkRZbko2YTFCRmNEUTBlaTlRV0dvd1ZHeFVaamhaTmpsTldGWlFSbXhaTDNOb2NWWjJkVUZoUkZsblJsaDVWRmxTVW13S2ExUm5abHB2UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWMwdzRNVFVyUm1kek5IRkhTR2RCZFhwNFdsQlFRbkU1WkM5NlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGelNqaHdDblZ5V0U0MU1HYzVZa00yUlM5cVlqaFhhV012VUVST1RtUjNaVmx6UVROclUxZE9jSGxaVVVOSlVVTnlja2RoVHpoM1Z6QnRkV3h5VkZkdVNuZ3hZV1lLVkRCTEsxRktjMFZ1UkVsM1EwSjRRMjFJTWtkWWR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly9jYWUyMDkxYS00ZjdmLTQ2NjEtODYwOC05ZDM2ODZlZjhiNGMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1lbnZzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEZ3WHM2MTZXWHhXWnQ5T2FoOUJ0V2JoTnhOeERUa0pmcHBGb0VDWDBYcnllckFKSEZYcUJsbmdz"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVSVEpOZWtVd1RteHZXRVJVVFRGTlZFRjRUa1JGTWsxNlJUQk9iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWnpOMkpMVlVFMFRWQmpZVlJaQ21kR1duVmxXWFl3Wmt4c1dqUldURzlFUlV0MmJVZFJaa3htWm5OSVRIQnJWelprTkRWWllUQjZhbHBIUjFJd2JGbEZURzl4Ylc4dlJHOXJPV0ZVWkdVS01HMDNjV3RwVDJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNFTXlWSEpzZVZoNVNteG1VbHB4VGxCR2FXeG9NVEJ6U0M5RVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGM1NuaEJDbGRwVWxkc0wyRjZiVU53Vm1sdWJrSkhXR2xoYzFCNk16VTBkRk5IYVZBMmMyMXdXVzAzVlVOSlNFZDFlbmRJZEVZNVJVeFBXV05aVFc5MmVHVmpPRmtLVFVoSFZsZFRORmxYTUdWVlRHWllRVXA0TVZZS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNzFmYjc1LTAyZGMtNDVmMy1hZjlkLTMyNGU3MDM4NTI4My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1806" + - "1746" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1439,125 +1439,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f41d74e-c7bb-411d-8f00-614c99dad04d + - 4f95ed45-2d7f-46d0-bd4d-7656848bf8f6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:18.347340Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:18.347340Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1606" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e963d57-1472-4d20-b345-347ff87f5137 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c - method: GET - response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1570" + - "1605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:30 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1565,61 +1503,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 037684d8-3bb2-49ef-b87f-86c4397d3712 + - 7b5ed6c1-a951-4fe8-a36e-d2331d7b67ed status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:18.347340Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"region":"fr-par", "id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.281353Z", - "updated_at":"2025-10-09T18:39:29.867705Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.cae2091a-4f7f-4661-8608-9d3686ef8b4c.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"0d71fb75-02dc-45f3-af9d-324e70385283", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.379925Z", + "updated_at":"2025-10-15T16:33:18.347340Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.0d71fb75-02dc-45f3-af9d-324e70385283.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"db2198d6-bc89-425a-afbd-b5d5bd4fe560", - "commitment_ends_at":"2025-10-09T18:37:58.281365Z", "acl_available":true, "iam_nodes_group_id":"41e246cd-9b8f-49f9-a187-36ebf9d957f6", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9d42a795-58c1-47bc-beb5-3ad11ce9e7e4", + "commitment_ends_at":"2025-10-15T16:31:46.379943Z", "acl_available":true, "iam_nodes_group_id":"d037d96e-e3e8-440e-90dd-f2370ef12a65", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:35 GMT + - Wed, 15 Oct 2025 16:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1627,20 +1565,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5061ed1a-6925-42b4-8d7a-510625319625 + - 2336d93e-f194-4a68-b54d-fae06a586aed status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d71fb75-02dc-45f3-af9d-324e70385283","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cae2091a-4f7f-4661-8608-9d3686ef8b4c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d71fb75-02dc-45f3-af9d-324e70385283 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"cae2091a-4f7f-4661-8608-9d3686ef8b4c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d71fb75-02dc-45f3-af9d-324e70385283","type":"not_found"}' headers: Content-Length: - "128" @@ -1649,9 +1587,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:40 GMT + - Wed, 15 Oct 2025 16:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1659,7 +1597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ee52520-4b68-477a-ac5f-799dd67d9359 + - d0f6799a-1d2e-4c2f-8001-70e243bba861 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.golden index dc589c59f0..b0a0e255ac 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-envs.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJYRENDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCRWdER2MrR3VxQkNqTHBHCk1LbHZpUitBdjVXcjNDYnJ6a1BFcDQ0ei9QWGowVGxUZjhZNjlNWFZQRmxZL3NocVZ2dUFhRFlnRlh5VFlSUmwKa1RnZlpvS2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUc0w4MTUrRmdzNHFHSGdBdXp4WlBQQnE5ZC96QUtCZ2dxaGtqT1BRUURBZ05KQURCR0FpRUFzSjhwCnVyWE41MGc5YkM2RS9qYjhXaWMvUEROTmR3ZVlzQTNrU1dOcHlZUUNJUUNyckdhTzh3VzBtdWxyVFduSngxYWYKVDBLK1FKc0VuREl3Q0J4Q21IMkdYdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K - server: https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCQ2ZzN2JLVUE0TVBjYVRZCmdGWnVlWXYwZkxsWjRWTG9ERUt2bUdRZkxmZnNITHBrVzZkNDVZYTB6alpHR1IwbFlFTG9xbW8vRG9rOWFUZGUKMG03cWtpT2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUcEMyVHJseVh5SmxmUlpxTlBGaWxoMTBzSC9EQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUF3SnhBCldpUldsL2F6bUNwVmlubkJHWGlhc1B6MzU0dFNHaVA2c21wWW03VUNJSEd1endIdEY5RUxPWWNZTW92eGVjOFkKTUhHVldTNFlXMGVVTGZYQUp4MVYKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-with-envs contexts: - context: @@ -32,4 +32,4 @@ users: interactiveMode: Never 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJYRENDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCRWdER2MrR3VxQkNqTHBHCk1LbHZpUitBdjVXcjNDYnJ6a1BFcDQ0ei9QWGowVGxUZjhZNjlNWFZQRmxZL3NocVZ2dUFhRFlnRlh5VFlSUmwKa1RnZlpvS2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUc0w4MTUrRmdzNHFHSGdBdXp4WlBQQnE5ZC96QUtCZ2dxaGtqT1BRUURBZ05KQURCR0FpRUFzSjhwCnVyWE41MGc5YkM2RS9qYjhXaWMvUEROTmR3ZVlzQTNrU1dOcHlZUUNJUUNyckdhTzh3VzBtdWxyVFduSngxYWYKVDBLK1FKc0VuREl3Q0J4Q21IMkdYdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\n server: https://cae2091a-4f7f-4661-8608-9d3686ef8b4c.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-envs\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-envs\n user: cli-config-3b1b8942\n name: admin@cli-test-get-kubeconfig-with-envs\ncurrent-context: admin@cli-test-get-kubeconfig-with-envs\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-3b1b8942\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - k8s\n - exec-credential\n command: scw\n env:\n - name: SCW_PROFILE\n value: default\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCQ2ZzN2JLVUE0TVBjYVRZCmdGWnVlWXYwZkxsWjRWTG9ERUt2bUdRZkxmZnNITHBrVzZkNDVZYTB6alpHR1IwbFlFTG9xbW8vRG9rOWFUZGUKMG03cWtpT2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJUcEMyVHJseVh5SmxmUlpxTlBGaWxoMTBzSC9EQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUF3SnhBCldpUldsL2F6bUNwVmlubkJHWGlhc1B6MzU0dFNHaVA2c21wWW03VUNJSEd1endIdEY5RUxPWWNZTW92eGVjOFkKTUhHVldTNFlXMGVVTGZYQUp4MVYKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://0d71fb75-02dc-45f3-af9d-324e70385283.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-envs\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-envs\n user: cli-config-3b1b8942\n name: admin@cli-test-get-kubeconfig-with-envs\ncurrent-context: admin@cli-test-get-kubeconfig-with-envs\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-3b1b8942\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - k8s\n - exec-credential\n command: scw\n env:\n - name: SCW_PROFILE\n value: default\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.cassette.yaml index d1287d8add..ee6f3c2d3c 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c9b998-ac00-48dd-8590-053381d45b69 + - 884dea0c-d940-42dc-9de5-e9fb31e3c6ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", "name":"pn-sweet-edison", + body: '{"id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "name":"pn-happy-haibt", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.081259Z", "updated_at":"2025-10-09T18:37:57.081259Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"f37218f6-edb9-4ef6-8d46-2ff5b947e5d2", - "created_at":"2025-10-09T18:37:57.081259Z", "updated_at":"2025-10-09T18:37:57.081259Z", - "subnet":"172.17.16.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"f7314ab7-ceee-436b-88c9-8c6ba89901b3", "created_at":"2025-10-09T18:37:57.081259Z", - "updated_at":"2025-10-09T18:37:57.081259Z", "subnet":"fd58:6b70:2d5a:699a::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", + "created_at":"2025-10-15T16:31:45.272418Z", "updated_at":"2025-10-15T16:31:45.272418Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"ff392342-d475-4484-8263-1e67c670f504", + "created_at":"2025-10-15T16:31:45.272418Z", "updated_at":"2025-10-15T16:31:45.272418Z", + "subnet":"172.17.100.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"627b35c5-bce0-448c-8f4e-684605884004", "created_at":"2025-10-15T16:31:45.272418Z", + "updated_at":"2025-10-15T16:31:45.272418Z", "subnet":"fd58:6b70:2d5a:b461::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,20 +97,20 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", "name":"pn-sweet-edison", + body: '{"id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "name":"pn-happy-haibt", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.081259Z", "updated_at":"2025-10-09T18:37:57.081259Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"f37218f6-edb9-4ef6-8d46-2ff5b947e5d2", - "created_at":"2025-10-09T18:37:57.081259Z", "updated_at":"2025-10-09T18:37:57.081259Z", - "subnet":"172.17.16.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"f7314ab7-ceee-436b-88c9-8c6ba89901b3", "created_at":"2025-10-09T18:37:57.081259Z", - "updated_at":"2025-10-09T18:37:57.081259Z", "subnet":"fd58:6b70:2d5a:699a::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", + "created_at":"2025-10-15T16:31:45.272418Z", "updated_at":"2025-10-15T16:31:45.272418Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"ff392342-d475-4484-8263-1e67c670f504", + "created_at":"2025-10-15T16:31:45.272418Z", "updated_at":"2025-10-15T16:31:45.272418Z", + "subnet":"172.17.100.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"627b35c5-bce0-448c-8f4e-684605884004", "created_at":"2025-10-15T16:31:45.272418Z", + "updated_at":"2025-10-15T16:31:45.272418Z", "subnet":"fd58:6b70:2d5a:b461::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: @@ -121,9 +121,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:57 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c3d2e97-b731-4d14-963f-eaad3ec62ca1 + - bac79f09-cdba-4c0f-b2a0-8d07e2d024c4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:57.946442Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.216284Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,348 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:57.946442Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.216284Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 502b26cc-a34f-4768-aaf6-891636e0abc4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:57.946442Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:57.946442Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1544" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d540c94f-f430-4206-9fa5-3cc4097b8352 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 18273004-89f7-4ba1-8126-6586f4e57a96 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fed514b4-6874-4f45-8dc8-78a46de50ab7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c7068e3-3c38-4c44-9ed0-1486d8774bbe - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:18 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70bad21-c496-451f-b9e0-85e0ea1c7835 + - 783b5000-c443-4d92-adeb-804a581ba535 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.216284Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.216284Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:23 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0437ac1f-69a4-401a-8a31-5fab554a6102 + - fe2990a3-539e-488c-9a32-7add34f3c792 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:28 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5f3bb60-fb36-4a66-bb9b-6f6267d5c9f0 + - 70e8dea0-0eeb-4ee3-acb8-87801e95025e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:33 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c47b9cd-6478-4365-9f7d-be961e2f3b0c + - b06e45a8-7070-4ec9-a229-ed35b7a4cd13 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:38 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13f1acd4-4e7f-4892-bf0f-c875a34c46bb + - bd309d0b-86f9-4cd5-b0f3-2bace9ccdf28 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:43 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c012eda9-7e96-4abd-992f-a72fc804f9d3 + - 3445560a-ab03-43cf-a269-59d03ce1e714 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:48 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17279dce-ebee-4f6e-894b-498f9e47a838 + - be1a69a8-64dd-4105-a659-a09ba0a23b4c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:53 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b35d1f3-b2b9-4c90-b146-396aeb7590f7 + - 5889937a-84ed-4176-bff9-20eb4412cd37 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:38:58 GMT + - Wed, 15 Oct 2025 16:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42f9ba2e-d165-4049-8a8e-1633ddb70e46 + - c402a2cc-d1b9-4611-b69b-d9131b2bc6e5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:04 GMT + - Wed, 15 Oct 2025 16:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f99a73e-9ec3-4936-a4f1-596908c22d22 + - ad9a7f8e-6e7b-447d-8496-f3c1d57adb82 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:09 GMT + - Wed, 15 Oct 2025 16:32:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60643321-5d21-4081-b7f7-912f78c6b5ab + - 38f56910-3378-48e6-bbde-68f305d7bae5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:14 GMT + - Wed, 15 Oct 2025 16:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df5c062e-f85f-4392-a181-a74a7ba241a0 + - 04efee30-9ce8-4ef9-a932-56af124d7eaf status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:19 GMT + - Wed, 15 Oct 2025 16:32:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00f6ad0b-515f-410e-a521-c7d0b41666d0 + - 8e44050b-eb9a-4b4c-8565-29480d464f16 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:32:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1975b7-4732-489a-9f67-23377e823216 + - 61d10ecf-cb24-4f55-be06-92dd1f8f24bc status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a79f8c7d-e55b-4e37-b074-be08735433f7 + - 294b050f-a1ec-472d-8e68-ebd805f35f81 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:34 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f64ee320-9ea7-4d85-8105-40070ba6b203 + - db4be64f-5f86-4484-af45-57571c7a6b03 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:39 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98e4a491-9d7a-43e3-9258-cece04a1276b + - 9d8e8e86-5708-4183-a6f2-120f16e436a9 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:44 GMT + - Wed, 15 Oct 2025 16:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86ce05e4-5a9c-44f9-96e7-e1806138da67 + - c78231a1-88be-4c8a-bfdd-f5e85b6e4e71 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:49 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df37078a-b6bd-4c76-bfae-4b012d70223b + - e0e50080-2e5e-4244-8981-b6a752cadd4f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:54 GMT + - Wed, 15 Oct 2025 16:33:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,61 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce972f29-9166-499f-8ec8-5d21302042a0 + - a32d0478-dd8c-4fd2-b058-7c2b910adc7d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:31:46.745888Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:59 GMT + - Wed, 15 Oct 2025 16:33:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1747,61 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b0ca66b-6baa-4ad4-901b-5d0317e3f6ae + - 015c1956-6790-4146-8422-9b0c4af59f17 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:25.681095Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:25.681095Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:04 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,61 +1499,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09ae64e2-7de1-4e7c-b2a1-a9b821eee55b + - f2d9d4c2-3262-423b-a2d5-34e159aa02ba status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNVR0ZyTjJRd05raExORnBtVkdkYUNtb3pTR2hPYUROTmRXVmllRm8yU2pCUVlVbDBjV2xTUVVoTWNVOVBZbTFZWlc1S01FMTVRMEpaVGtVM1VteFpVbWhNWVdNek4waHZRWEIzYWtoYWVVTUtTQ3RSVGt0d2NXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJlWEZ3TUVGSWRsUTRaMkZZYmxaVFdVcFBWVTlsZHpaa2NFcFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnRkelZsQ2tsaFlXRXhRMGQwV0hvdlFrcFBiMG8yWW04emExRlBXRTh6VDJKUksyWlpPU3N6T1NzMk9FTkpSMnB5YWtSS1dXSktkRVZ4TjBZMk5WWTBUM3BvVURNS2MyaHBVR2t6UVhWRVJreDFPVEV2VjB4MlZ6QUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly84ZTVkMzg2OS0wZjY3LTQ1NWMtODhjNi0zYTYxZjIzMWMzOTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392/kubeconfig?redacted=true method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNVR0ZyTjJRd05raExORnBtVkdkYUNtb3pTR2hPYUROTmRXVmllRm8yU2pCUVlVbDBjV2xTUVVoTWNVOVBZbTFZWlc1S01FMTVRMEpaVGtVM1VteFpVbWhNWVdNek4waHZRWEIzYWtoYWVVTUtTQ3RSVGt0d2NXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJlWEZ3TUVGSWRsUTRaMkZZYmxaVFdVcFBWVTlsZHpaa2NFcFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnRkelZsQ2tsaFlXRXhRMGQwV0hvdlFrcFBiMG8yWW04emExRlBXRTh6VDJKUksyWlpPU3N6T1NzMk9FTkpSMnB5YWtSS1dXSktkRVZ4TjBZMk5WWTBUM3BvVURNS2MyaHBVR2t6UVhWRVJreDFPVEV2VjB4MlZ6QUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly84ZTVkMzg2OS0wZjY3LTQ1NWMtODhjNi0zYTYxZjIzMWMzOTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1580" + - "1826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:09 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,61 +1531,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3c4c5c7-a5e6-4e4f-95af-5605dd27598f + - febafc4d-d240-4fd5-95c9-b11f3626e74b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNVR0ZyTjJRd05raExORnBtVkdkYUNtb3pTR2hPYUROTmRXVmllRm8yU2pCUVlVbDBjV2xTUVVoTWNVOVBZbTFZWlc1S01FMTVRMEpaVGtVM1VteFpVbWhNWVdNek4waHZRWEIzYWtoYWVVTUtTQ3RSVGt0d2NXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJlWEZ3TUVGSWRsUTRaMkZZYmxaVFdVcFBWVTlsZHpaa2NFcFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnRkelZsQ2tsaFlXRXhRMGQwV0hvdlFrcFBiMG8yWW04emExRlBXRTh6VDJKUksyWlpPU3N6T1NzMk9FTkpSMnB5YWtSS1dXSktkRVZ4TjBZMk5WWTBUM3BvVURNS2MyaHBVR2t6UVhWRVJreDFPVEV2VjB4MlZ6QUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly84ZTVkMzg2OS0wZjY3LTQ1NWMtODhjNi0zYTYxZjIzMWMzOTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392/kubeconfig?redacted=true method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNVR0ZyTjJRd05raExORnBtVkdkYUNtb3pTR2hPYUROTmRXVmllRm8yU2pCUVlVbDBjV2xTUVVoTWNVOVBZbTFZWlc1S01FMTVRMEpaVGtVM1VteFpVbWhNWVdNek4waHZRWEIzYWtoYWVVTUtTQ3RSVGt0d2NXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJlWEZ3TUVGSWRsUTRaMkZZYmxaVFdVcFBWVTlsZHpaa2NFcFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnRkelZsQ2tsaFlXRXhRMGQwV0hvdlFrcFBiMG8yWW04emExRlBXRTh6VDJKUksyWlpPU3N6T1NzMk9FTkpSMnB5YWtSS1dXSktkRVZ4TjBZMk5WWTBUM3BvVURNS2MyaHBVR2t6UVhWRVJreDFPVEV2VjB4MlZ6QUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly84ZTVkMzg2OS0wZjY3LTQ1NWMtODhjNi0zYTYxZjIzMWMzOTIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1580" + - "1826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:14 GMT + - Wed, 15 Oct 2025 16:33:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1933,685 +1563,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c1cad24-370a-406f-a16d-970f883bc9fa + - 06e7083e-781e-4fc0-8ed8-03540c2871a4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:28.018651Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392?with_additional_resources=true + method: DELETE response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:28.018651Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - edd53fee-873d-4909-9278-e4e913b72579 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0adecf43-a493-40e5-910a-3d7dda356003 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3301abde-2ff4-4a3a-a598-ba1f1ba97a9a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b5c7e3c-7124-4e91-a012-28dacbd92ade - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3648c3a0-9dbf-4c5d-829a-aae81dc1f6d2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e6a7684-e0dd-41cc-a670-d81f17470d6c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:37:58.580896Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c90f9c5-5feb-4642-a976-bbe781fc8038 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:52.889936Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:52.889936Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1577" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b82a7a38-8eac-4553-9f2d-89a4b54b18fc - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVEZWYVRkNVZFeHplRmh6VURBMkNsTjZNbmhxYjNWelNHZEtOVlZKZUZNME4yOVdXR1JaWTNKU01XeHhWRkp0WmtGNVpWVk9SSEl5ZFdvMlpFeFVNMDQ0UWxSU2NITlhhVWQ2VVRkSlIxQUtjRUpaY0N0dVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJhazlwYTBsMFZHSlpUWFFyV0RJd1ZWRmxOMEpDWXpkNmQzaFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm9aV1pOQ25RNWRDdEJOMGhtYTFoVE0xVk1MemhqUm00eFRISlZPRE5zYmt3ckwwRkVNbkJYWkVndk5FTkpVVVJWUmtGMldERk5jRzFGZUhBM2VrNVBkMWc1YUdzS1QzSllkSFJ2UWpWcVZUQTVUR1oyY21rM2NIUlZRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA1Y2I2N2ItN2EwOS00NTUyLThjMjMtYzkxOWU5ODQ5MzQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGxCd0Q4UnBWcmU3VE1aWUw0UDJNNlRIc0dvUExxazRrSmszVFNOd1RUUVVFS3VOSFYyZ0h1MG16"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341/kubeconfig - method: GET - response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVEZWYVRkNVZFeHplRmh6VURBMkNsTjZNbmhxYjNWelNHZEtOVlZKZUZNME4yOVdXR1JaWTNKU01XeHhWRkp0WmtGNVpWVk9SSEl5ZFdvMlpFeFVNMDQ0UWxSU2NITlhhVWQ2VVRkSlIxQUtjRUpaY0N0dVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJhazlwYTBsMFZHSlpUWFFyV0RJd1ZWRmxOMEpDWXpkNmQzaFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm9aV1pOQ25RNWRDdEJOMGhtYTFoVE0xVk1MemhqUm00eFRISlZPRE5zYmt3ckwwRkVNbkJYWkVndk5FTkpVVVJWUmtGMldERk5jRzFGZUhBM2VrNVBkMWc1YUdzS1QzSllkSFJ2UWpWcVZUQTVUR1oyY21rM2NIUlZRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA1Y2I2N2ItN2EwOS00NTUyLThjMjMtYzkxOWU5ODQ5MzQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGxCd0Q4UnBWcmU3VE1aWUw0UDJNNlRIc0dvUExxazRrSmszVFNOd1RUUVVFS3VOSFYyZ0h1MG16"}' - headers: - Content-Length: - - "1886" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7eadfbd8-ba40-41bb-b777-cc108c174e20 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVEZWYVRkNVZFeHplRmh6VURBMkNsTjZNbmhxYjNWelNHZEtOVlZKZUZNME4yOVdXR1JaWTNKU01XeHhWRkp0WmtGNVpWVk9SSEl5ZFdvMlpFeFVNMDQ0UWxSU2NITlhhVWQ2VVRkSlIxQUtjRUpaY0N0dVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJhazlwYTBsMFZHSlpUWFFyV0RJd1ZWRmxOMEpDWXpkNmQzaFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm9aV1pOQ25RNWRDdEJOMGhtYTFoVE0xVk1MemhqUm00eFRISlZPRE5zYmt3ckwwRkVNbkJYWkVndk5FTkpVVVJWUmtGMldERk5jRzFGZUhBM2VrNVBkMWc1YUdzS1QzSllkSFJ2UWpWcVZUQTVUR1oyY21rM2NIUlZRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA1Y2I2N2ItN2EwOS00NTUyLThjMjMtYzkxOWU5ODQ5MzQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGxCd0Q4UnBWcmU3VE1aWUw0UDJNNlRIc0dvUExxazRrSmszVFNOd1RUUVVFS3VOSFYyZ0h1MG16"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341/kubeconfig - method: GET - response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVEZWYVRkNVZFeHplRmh6VURBMkNsTjZNbmhxYjNWelNHZEtOVlZKZUZNME4yOVdXR1JaWTNKU01XeHhWRkp0WmtGNVpWVk9SSEl5ZFdvMlpFeFVNMDQ0UWxSU2NITlhhVWQ2VVRkSlIxQUtjRUpaY0N0dVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJhazlwYTBsMFZHSlpUWFFyV0RJd1ZWRmxOMEpDWXpkNmQzaFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm9aV1pOQ25RNWRDdEJOMGhtYTFoVE0xVk1MemhqUm00eFRISlZPRE5zYmt3ckwwRkVNbkJYWkVndk5FTkpVVVJWUmtGMldERk5jRzFGZUhBM2VrNVBkMWc1YUdzS1QzSllkSFJ2UWpWcVZUQTVUR1oyY21rM2NIUlZRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjA1Y2I2N2ItN2EwOS00NTUyLThjMjMtYzkxOWU5ODQ5MzQxLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMiCiAgICB1c2VyOiBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzLWFuZC1lbnZzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hbmQtZW52cwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYW5kLWVudnMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGxCd0Q4UnBWcmU3VE1aWUw0UDJNNlRIc0dvUExxazRrSmszVFNOd1RUUVVFS3VOSFYyZ0h1MG16"}' - headers: - Content-Length: - - "1886" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - acf62dff-a23f-407a-8e44-aa03431bca67 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341?with_additional_resources=true - method: DELETE - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1616" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:40:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3ed953d-b028-4782-9c55-7dc1af46b862 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 - method: GET - response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1580" + - "1615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2619,61 +1627,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06e055ed-a79c-4723-ad60-3b26c352ccc7 + - 587da19c-fe42-486b-935a-299a9c70793b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:28.018651Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"region":"fr-par", "id":"605cb67b-7a09-4552-8c23-c919e9849341", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:57.946442Z", - "updated_at":"2025-10-09T18:40:55.629114Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.605cb67b-7a09-4552-8c23-c919e9849341.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"8e5d3869-0f67-455c-88c6-3a61f231c392", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:46.216284Z", + "updated_at":"2025-10-15T16:33:28.018651Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags-and-envs", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.8e5d3869-0f67-455c-88c6-3a61f231c392.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"7a8aaa0e-58ba-4799-8836-65af68d2b0cd", - "commitment_ends_at":"2025-10-09T18:37:57.946451Z", "acl_available":true, "iam_nodes_group_id":"83f0d39d-7b24-4459-ba30-35f89fbb9317", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"d7bb7e88-88bd-4697-8474-bcb985c06a19", + "commitment_ends_at":"2025-10-15T16:31:46.216293Z", "acl_available":true, "iam_nodes_group_id":"8d0d284f-c626-468c-8187-aa5cea64a42d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1580" + - "1579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:00 GMT + - Wed, 15 Oct 2025 16:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2681,20 +1689,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c4afaa0-4462-4bdd-9b4e-7e243aa29934 + - 19a3a2ff-182f-4d78-ad69-5718fd9487a2 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"605cb67b-7a09-4552-8c23-c919e9849341","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"8e5d3869-0f67-455c-88c6-3a61f231c392","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/605cb67b-7a09-4552-8c23-c919e9849341 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5d3869-0f67-455c-88c6-3a61f231c392 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"605cb67b-7a09-4552-8c23-c919e9849341","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"8e5d3869-0f67-455c-88c6-3a61f231c392","type":"not_found"}' headers: Content-Length: - "128" @@ -2703,9 +1711,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:05 GMT + - Wed, 15 Oct 2025 16:33:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2713,7 +1721,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae0c5b11-fc1c-4e72-a146-877dd36521db + - f6c6e5ff-005a-4c9e-bb96-e21c0241897b status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.golden index ddf97c33c8..6dd4d4c380 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags-and-envs.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJYRENDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTTFVaTd5VExzeFhzUDA2ClN6Mnhqb3VzSGdKNVVJeFM0N29WWGRZY3JSMWxxVFJtZkF5ZVVORHIydWo2ZExUM044QlRScHNXaUd6UTdJR1AKcEJZcCtuT2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJRak9pa0l0VGJZTXQrWDIwVVFlN0JCYzd6d3hUQUtCZ2dxaGtqT1BRUURBZ05KQURCR0FpRUFoZWZNCnQ5dCtBN0hma1hTM1VMLzhjRm4xTHJVODNsbkwrL0FEMnBXZEgvNENJUURVRkF2WDFNcG1FeHA3ek5Pd1g5aGsKT3JYdHRvQjVqVTA5TGZ2cmk3cHRVQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K - server: https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCUGFrN2QwNkhLNFpmVGdaCmozSGhOaDNNdWVieFo2SjBQYUl0cWlSQUhMcU9PYm1YZW5KME15Q0JZTkU3UmxZUmhMYWMzN0hvQXB3akhaeUMKSCtRTktwcWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJReXFwMEFIdlQ4Z2FYblZTWUpPVU9ldzZkcEpUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFtdzVlCklhYWExQ0d0WHovQkpPb0o2Ym8za1FPWE8zT2JRK2ZZOSszOSs2OENJR2pyakRKWWJKdEVxN0Y2NVY0T3poUDMKc2hpUGkzQXVERkx1OTEvV0x2VzAKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-with-flags-and-envs contexts: - context: @@ -34,4 +34,4 @@ users: interactiveMode: Never 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJYRENDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCTTFVaTd5VExzeFhzUDA2ClN6Mnhqb3VzSGdKNVVJeFM0N29WWGRZY3JSMWxxVFJtZkF5ZVVORHIydWo2ZExUM044QlRScHNXaUd6UTdJR1AKcEJZcCtuT2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJRak9pa0l0VGJZTXQrWDIwVVFlN0JCYzd6d3hUQUtCZ2dxaGtqT1BRUURBZ05KQURCR0FpRUFoZWZNCnQ5dCtBN0hma1hTM1VMLzhjRm4xTHJVODNsbkwrL0FEMnBXZEgvNENJUURVRkF2WDFNcG1FeHA3ek5Pd1g5aGsKT3JYdHRvQjVqVTA5TGZ2cmk3cHRVQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\n server: https://605cb67b-7a09-4552-8c23-c919e9849341.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-flags-and-envs\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-flags-and-envs\n user: cli-config-90703896\n name: admin@cli-test-get-kubeconfig-with-flags-and-envs\ncurrent-context: admin@cli-test-get-kubeconfig-with-flags-and-envs\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-90703896\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - --profile\n - default\n - k8s\n - exec-credential\n command: scw\n env:\n - name: SCW_PROFILE\n value: default2\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCUGFrN2QwNkhLNFpmVGdaCmozSGhOaDNNdWVieFo2SjBQYUl0cWlSQUhMcU9PYm1YZW5KME15Q0JZTkU3UmxZUmhMYWMzN0hvQXB3akhaeUMKSCtRTktwcWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJReXFwMEFIdlQ4Z2FYblZTWUpPVU9ldzZkcEpUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpRUFtdzVlCklhYWExQ0d0WHovQkpPb0o2Ym8za1FPWE8zT2JRK2ZZOSszOSs2OENJR2pyakRKWWJKdEVxN0Y2NVY0T3poUDMKc2hpUGkzQXVERkx1OTEvV0x2VzAKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://8e5d3869-0f67-455c-88c6-3a61f231c392.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-flags-and-envs\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-flags-and-envs\n user: cli-config-90703896\n name: admin@cli-test-get-kubeconfig-with-flags-and-envs\ncurrent-context: admin@cli-test-get-kubeconfig-with-flags-and-envs\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-90703896\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - --profile\n - default\n - k8s\n - exec-credential\n command: scw\n env:\n - name: SCW_PROFILE\n value: default2\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.cassette.yaml index e6fb86d168..f502771290 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:56 GMT + - Wed, 15 Oct 2025 16:31:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccdba585-5e0d-4d06-9aa4-bc871f17a332 + - 48a6560a-22bb-4eed-9554-1136fea6678b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3557308d-a1f2-4467-8c7b-19fb89256f12", "name":"pn-dreamy-matsumoto", + body: '{"id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "name":"pn-heuristic-stonebraker", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.214844Z", "updated_at":"2025-10-09T18:37:57.214844Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"a9b74163-cf3e-4dea-b1c2-bc0b50dd8a49", - "created_at":"2025-10-09T18:37:57.214844Z", "updated_at":"2025-10-09T18:37:57.214844Z", - "subnet":"172.17.72.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"5ebfb925-ac3a-4601-902d-a03058281d3a", "created_at":"2025-10-09T18:37:57.214844Z", - "updated_at":"2025-10-09T18:37:57.214844Z", "subnet":"fd58:6b70:2d5a:f8ee::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", + "created_at":"2025-10-15T16:31:44.860807Z", "updated_at":"2025-10-15T16:31:44.860807Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"3a36b097-136c-40af-97db-dca6e223c3ad", + "created_at":"2025-10-15T16:31:44.860807Z", "updated_at":"2025-10-15T16:31:44.860807Z", + "subnet":"172.17.88.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"5edc6591-6d5a-4da1-b25f-462ae944183f", "created_at":"2025-10-15T16:31:44.860807Z", + "updated_at":"2025-10-15T16:31:44.860807Z", "subnet":"fd58:6b70:2d5a:a2bd::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"3557308d-a1f2-4467-8c7b-19fb89256f12", "name":"pn-dreamy-matsumoto", + body: '{"id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "name":"pn-heuristic-stonebraker", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-09T18:37:57.214844Z", "updated_at":"2025-10-09T18:37:57.214844Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"a9b74163-cf3e-4dea-b1c2-bc0b50dd8a49", - "created_at":"2025-10-09T18:37:57.214844Z", "updated_at":"2025-10-09T18:37:57.214844Z", - "subnet":"172.17.72.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"5ebfb925-ac3a-4601-902d-a03058281d3a", "created_at":"2025-10-09T18:37:57.214844Z", - "updated_at":"2025-10-09T18:37:57.214844Z", "subnet":"fd58:6b70:2d5a:f8ee::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", + "created_at":"2025-10-15T16:31:44.860807Z", "updated_at":"2025-10-15T16:31:44.860807Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"3a36b097-136c-40af-97db-dca6e223c3ad", + "created_at":"2025-10-15T16:31:44.860807Z", "updated_at":"2025-10-15T16:31:44.860807Z", + "subnet":"172.17.88.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"5edc6591-6d5a-4da1-b25f-462ae944183f", "created_at":"2025-10-15T16:31:44.860807Z", + "updated_at":"2025-10-15T16:31:44.860807Z", "subnet":"fd58:6b70:2d5a:a2bd::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1139" + - "1144" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:37:57 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a41569d-3b99-4375-9856-39bce33ee618 + - ad24ab6d-89d7-4a44-b0d0-3f5af2bce696 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.079592Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:45.907192Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,1154 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.079592Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:45.907192Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fe7cb1e-c641-4bab-97eb-19d75fb4229b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.079592Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.079592Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:37:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f56cda13-8f83-41f9-93e1-9252c964fcf9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6cfeb3e-77df-4a30-92d5-d840ee9e8dc4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff5d05fd-f34c-4e21-8fa5-61248039f6f4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c271506-7e3f-4701-ad03-4a74ad835f8c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a2acbc3-6f3d-4cb6-87d2-49b4fc72d5dd - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 083a1ee9-21c1-4a83-9a7b-e32ec76da244 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - db5f7864-f8a1-4365-a773-4843dad4a55d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 090478b4-03c2-4bd0-9df2-c58e5cc123ea - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6574f1d-494c-4f6f-93fb-a7534e0737a3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90c9cd64-5e75-4ce9-8e0d-7d1f986a6094 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d316f575-8596-43f1-b99c-e3a83417df70 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7585e217-bcdf-43d7-8308-500cddd3df4e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:38:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ee02b4c-0a76-43c9-a2f0-8d5d9eb9a727 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61610da3-efe5-47b2-9d5c-b6549f64c12f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3ef3983-59f4-4f1b-bea2-6c1e137d8d0d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4187048b-e2e3-4181-a22a-c7f8e0701eba - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 18:39:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 642aeb89-a587-467c-a593-d220c161cdd4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 - method: GET - response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:24 GMT + - Wed, 15 Oct 2025 16:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 394abaa1-1a9e-4030-a985-673411c7da8a + - b70088c3-59b6-45d0-a0d4-b953003ba7ab status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:45.907192Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:45.907192Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:29 GMT + - Wed, 15 Oct 2025 16:31:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8ea6756-8146-4472-9811-b4a028a85ed4 + - 81fdc500-d4ba-4654-af11-ebbaad35ea01 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:34 GMT + - Wed, 15 Oct 2025 16:31:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6d7ee46-56d9-47fa-a130-a87019ee569c + - abcb9356-cb7f-44b7-904a-64208f9ebc46 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:39 GMT + - Wed, 15 Oct 2025 16:31:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ed71747-1135-4b26-81e8-004fad466f00 + - 8bf0b007-0bc4-44c1-8fdb-2f895069e49c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:44 GMT + - Wed, 15 Oct 2025 16:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c4cb02-e66d-44f1-a4d4-4b3eb02c5cce + - 6ea48bd9-23fc-4398-9534-3b15f8023b60 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:49 GMT + - Wed, 15 Oct 2025 16:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97a33f75-bc21-43fd-b7cf-ccac7c64fbf9 + - d389539a-ed47-4329-a39f-e881e9f2120b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:54 GMT + - Wed, 15 Oct 2025 16:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e7530b-d6fb-4831-8091-2df91f1c6ae5 + - d94302ee-e0e6-485d-bbba-3c8965efd590 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:39:59 GMT + - Wed, 15 Oct 2025 16:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1747,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9505024-4f9b-4d1b-8823-4263d5f70463 + - 9508804f-5f27-434c-af3f-e166a526c2a2 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:04 GMT + - Wed, 15 Oct 2025 16:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f670268d-28a9-43a4-8698-bb39d4aaf5b2 + - 3a185dd4-e1a4-49f3-b3b2-296f5c863e9b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:09 GMT + - Wed, 15 Oct 2025 16:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0abbbc51-1a98-4144-b7c7-2d06f3c2d095 + - 1fcf6b78-cc60-4140-868d-563a0f9342c6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:15 GMT + - Wed, 15 Oct 2025 16:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1933,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3c1fd72-7153-4dc1-ab2c-2c67eb504187 + - a9a919ce-b996-4f59-ac74-52f5f86bc276 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:20 GMT + - Wed, 15 Oct 2025 16:32:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fc5118f-b947-450f-a4fd-55a76fd5668a + - c2398ea3-be30-499d-baae-ca94800c12de status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:25 GMT + - Wed, 15 Oct 2025 16:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f5c71ad-d2f0-4449-a8c5-df6e9f52c63d + - e5883b1c-f835-4c3c-8e24-59d92b121479 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:30 GMT + - Wed, 15 Oct 2025 16:32:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2119,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 493cc45f-0da9-4e75-b75e-ac6a6da39db3 + - 94274221-2e5e-4189-85a1-2a60dea10155 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:35 GMT + - Wed, 15 Oct 2025 16:32:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2181,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0aef8ba3-dbf4-46e9-aa02-cb278942ce45 + - 3c9d3685-abd7-48ca-b4c9-22caf692ee90 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:40 GMT + - Wed, 15 Oct 2025 16:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2243,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0839d60-9961-4fd5-a3e1-030a49c67954 + - 7fdf3b5d-90f0-4bc5-950c-52887a558050 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:45 GMT + - Wed, 15 Oct 2025 16:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2305,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eccb866-6a5b-48c5-9230-c6515fb2566a + - 736e0516-82d6-46f8-aa30-052b377ffbf3 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:37:58.576788Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"creating", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:31:46.527090Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:50 GMT + - Wed, 15 Oct 2025 16:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2367,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1e87453-ea4c-4ba6-9596-257f4c8c9110 + - 3d635679-9310-4596-a142-7202d3707b65 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:52.641098Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:11.847203Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:52.641098Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"ready", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:11.847203Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1568" + - "1567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2429,31 +1313,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09334cd9-e42f-4b5a-8a6f-920aa38f1146 + - 5cb0321e-f1dd-4be2-995d-cbac39a6a8a9 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSR2RYU0d4MGNWWTVPRzFWT0haeENtaENUbVZYTjBwR01qZ3JWRnA2VkU1U1YxcDNRa2hvY0VsSVpXbzRVa05xZG5saE5UWjZlV1JTUzIxWVdHTXplV3hIV2tKRWJ6WjBOalJqVVUxQmVWRUtSVlZtYkhsdmVXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRURzUzVGxjNVVUZGlVMUU1ZUROaWVYSkxSVGh3U21Gb2FYWkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFrTjRTbWMzQ2tvMU5IQjNOek0zUVZWdFRtUkZXakF5UzJoc2NYaEhaRlpWZGxVMlltYzJWSEF2WlRoUlNXaEJTVFJhYjFsWE0zaDZURlJGZUhWUlFWcFNZbVIzTjB3S1VESmphM1pIWWxGR1YwcHpUbkZQWjFOb1oza0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly80ODkwMTI3MS01MWJkLTRkZjMtYTU1ZS02M2RmZGVlYTRjYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVVXYXZSbEVWbXQ3RDEwWkNkNmVYQXozRmhqcVlYM3dtcEpZaWVjUHFpdlN2WWdhSTVWMUZFOEM="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSM2w1YzI5NlJFNVNiVFF6VW5kaENtVlBjbmx1TDJ4b1ZuWjNOMEZMYzNoWE1FZFNXVGx2VTFsSEx6ZHFLMk5XUTNoWFlqWm9aVEkwVjFWNFZVMTZTRll5TWpWdllUUXdiU3RYWVdrdlYwTUtjMk5tTVc5UlUycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNaSFl6VFc4dmRuZzBkbmMxUzBwemVFbHJaV3AzVVZKNk56bFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFpdHFZVWRxQ2s1alYydFhSalowVkZsTVptbHRiRWN3V1UxbFdFRkpWR054Y0N0Q1dEbGpSVEozTjBaUlNXaEJUR2d3ZG05NFoydHRhVE16Yld3clpuQktObTF6WTNrS1dISlNNWGRFTDNod2FsVjVTV05yY0ZwTFduY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNDEzZTI1YS02NDAwLTRkNGItYWM0Zi03YWNhMzYzMDYwZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSR2RYU0d4MGNWWTVPRzFWT0haeENtaENUbVZYTjBwR01qZ3JWRnA2VkU1U1YxcDNRa2hvY0VsSVpXbzRVa05xZG5saE5UWjZlV1JTUzIxWVdHTXplV3hIV2tKRWJ6WjBOalJqVVUxQmVWRUtSVlZtYkhsdmVXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRURzUzVGxjNVVUZGlVMUU1ZUROaWVYSkxSVGh3U21Gb2FYWkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFrTjRTbWMzQ2tvMU5IQjNOek0zUVZWdFRtUkZXakF5UzJoc2NYaEhaRlpWZGxVMlltYzJWSEF2WlRoUlNXaEJTVFJhYjFsWE0zaDZURlJGZUhWUlFWcFNZbVIzTjB3S1VESmphM1pIWWxGR1YwcHpUbkZQWjFOb1oza0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly80ODkwMTI3MS01MWJkLTRkZjMtYTU1ZS02M2RmZGVlYTRjYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVVXYXZSbEVWbXQ3RDEwWkNkNmVYQXozRmhqcVlYM3dtcEpZaWVjUHFpdlN2WWdhSTVWMUZFOEM="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSM2w1YzI5NlJFNVNiVFF6VW5kaENtVlBjbmx1TDJ4b1ZuWjNOMEZMYzNoWE1FZFNXVGx2VTFsSEx6ZHFLMk5XUTNoWFlqWm9aVEkwVjFWNFZVMTZTRll5TWpWdllUUXdiU3RYWVdrdlYwTUtjMk5tTVc5UlUycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNaSFl6VFc4dmRuZzBkbmMxUzBwemVFbHJaV3AzVVZKNk56bFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFpdHFZVWRxQ2s1alYydFhSalowVkZsTVptbHRiRWN3V1UxbFdFRkpWR054Y0N0Q1dEbGpSVEozTjBaUlNXaEJUR2d3ZG05NFoydHRhVE16Yld3clpuQktObTF6WTNrS1dISlNNWGRFTDNod2FsVjVTV05yY0ZwTFduY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNDEzZTI1YS02NDAwLTRkNGItYWM0Zi03YWNhMzYzMDYwZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1810" + - "1754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,31 +1345,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa618e4e-7ffc-46b2-8513-a7aa18cfc785 + - 4d7bde79-7c9d-4bc7-803a-9bfea8ef787b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSR2RYU0d4MGNWWTVPRzFWT0haeENtaENUbVZYTjBwR01qZ3JWRnA2VkU1U1YxcDNRa2hvY0VsSVpXbzRVa05xZG5saE5UWjZlV1JTUzIxWVdHTXplV3hIV2tKRWJ6WjBOalJqVVUxQmVWRUtSVlZtYkhsdmVXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRURzUzVGxjNVVUZGlVMUU1ZUROaWVYSkxSVGh3U21Gb2FYWkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFrTjRTbWMzQ2tvMU5IQjNOek0zUVZWdFRtUkZXakF5UzJoc2NYaEhaRlpWZGxVMlltYzJWSEF2WlRoUlNXaEJTVFJhYjFsWE0zaDZURlJGZUhWUlFWcFNZbVIzTjB3S1VESmphM1pIWWxGR1YwcHpUbkZQWjFOb1oza0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly80ODkwMTI3MS01MWJkLTRkZjMtYTU1ZS02M2RmZGVlYTRjYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVVXYXZSbEVWbXQ3RDEwWkNkNmVYQXozRmhqcVlYM3dtcEpZaWVjUHFpdlN2WWdhSTVWMUZFOEM="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSM2w1YzI5NlJFNVNiVFF6VW5kaENtVlBjbmx1TDJ4b1ZuWjNOMEZMYzNoWE1FZFNXVGx2VTFsSEx6ZHFLMk5XUTNoWFlqWm9aVEkwVjFWNFZVMTZTRll5TWpWdllUUXdiU3RYWVdrdlYwTUtjMk5tTVc5UlUycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNaSFl6VFc4dmRuZzBkbmMxUzBwemVFbHJaV3AzVVZKNk56bFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFpdHFZVWRxQ2s1alYydFhSalowVkZsTVptbHRiRWN3V1UxbFdFRkpWR054Y0N0Q1dEbGpSVEozTjBaUlNXaEJUR2d3ZG05NFoydHRhVE16Yld3clpuQktObTF6WTNrS1dISlNNWGRFTDNod2FsVjVTV05yY0ZwTFduY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNDEzZTI1YS02NDAwLTRkNGItYWM0Zi03YWNhMzYzMDYwZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlFUlRSTmVtTXhUMFp2V0VSVVRURk5WRUYzVDBSRk5FMTZZekZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSR2RYU0d4MGNWWTVPRzFWT0haeENtaENUbVZYTjBwR01qZ3JWRnA2VkU1U1YxcDNRa2hvY0VsSVpXbzRVa05xZG5saE5UWjZlV1JTUzIxWVdHTXplV3hIV2tKRWJ6WjBOalJqVVUxQmVWRUtSVlZtYkhsdmVXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRURzUzVGxjNVVUZGlVMUU1ZUROaWVYSkxSVGh3U21Gb2FYWkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFrTjRTbWMzQ2tvMU5IQjNOek0zUVZWdFRtUkZXakF5UzJoc2NYaEhaRlpWZGxVMlltYzJWSEF2WlRoUlNXaEJTVFJhYjFsWE0zaDZURlJGZUhWUlFWcFNZbVIzTjB3S1VESmphM1pIWWxGR1YwcHpUbkZQWjFOb1oza0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly80ODkwMTI3MS01MWJkLTRkZjMtYTU1ZS02M2RmZGVlYTRjYTQuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogWVVXYXZSbEVWbXQ3RDEwWkNkNmVYQXozRmhqcVlYM3dtcEpZaWVjUHFpdlN2WWdhSTVWMUZFOEM="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUlRKTmVrVXdUbXh2V0VSVVRURk5WRUY0VGtSRk1rMTZSVEJPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNSM2w1YzI5NlJFNVNiVFF6VW5kaENtVlBjbmx1TDJ4b1ZuWjNOMEZMYzNoWE1FZFNXVGx2VTFsSEx6ZHFLMk5XUTNoWFlqWm9aVEkwVjFWNFZVMTZTRll5TWpWdllUUXdiU3RYWVdrdlYwTUtjMk5tTVc5UlUycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNaSFl6VFc4dmRuZzBkbmMxUzBwemVFbHJaV3AzVVZKNk56bFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFpdHFZVWRxQ2s1alYydFhSalowVkZsTVptbHRiRWN3V1UxbFdFRkpWR054Y0N0Q1dEbGpSVEozTjBaUlNXaEJUR2d3ZG05NFoydHRhVE16Yld3clpuQktObTF6WTNrS1dISlNNWGRFTDNod2FsVjVTV05yY0ZwTFduY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNDEzZTI1YS02NDAwLTRkNGItYWM0Zi03YWNhMzYzMDYwZDUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncyIKICAgIHVzZXI6IGNsaS10ZXN0LWdldC1rdWJlY29uZmlnLXdpdGgtZmxhZ3MtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1nZXQta3ViZWNvbmZpZy13aXRoLWZsYWdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtZ2V0LWt1YmVjb25maWctd2l0aC1mbGFncy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1810" + - "1754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,63 +1377,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23684c2a-f363-4055-9c80-1f7169839776 + - 142afa03-e791-4a2c-b636-26581ee20eb5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:55.912732Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:12.457613Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:55.912732Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:12.457613Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1607" + - "1606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:55 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2557,61 +1441,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44cd5cb8-28d7-4a09-8058-ac7b93b88cf8 + - fc330ccf-4a1b-4af9-8c14-ec11d6741591 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:55.912732Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:12.457613Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"region":"fr-par", "id":"48901271-51bd-4df3-a55e-63dfdeea4ca4", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-09T18:37:58.079592Z", - "updated_at":"2025-10-09T18:40:55.912732Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", - "description":"", "status":"deleting", "version":"1.34.1", "cni":"cilium", "tags":[], - "cluster_url":"https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.48901271-51bd-4df3-a55e-63dfdeea4ca4.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"d413e25a-6400-4d4b-ac4f-7aca363060d5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T16:31:45.907192Z", + "updated_at":"2025-10-15T16:33:12.457613Z", "type":"kapsule", "name":"cli-test-get-kubeconfig-with-flags", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.d413e25a-6400-4d4b-ac4f-7aca363060d5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"3557308d-a1f2-4467-8c7b-19fb89256f12", - "commitment_ends_at":"2025-10-09T18:37:58.079600Z", "acl_available":true, "iam_nodes_group_id":"74442b27-02c3-4954-b6b6-a156bb24435d", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"bcdb80d1-6332-42dd-867f-8c809a716b13", + "commitment_ends_at":"2025-10-15T16:31:45.907204Z", "acl_available":true, "iam_nodes_group_id":"408507f1-76c1-4fbb-8270-4509fa402a07", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:40:56 GMT + - Wed, 15 Oct 2025 16:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2619,20 +1503,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03d2ca49-e7f3-4aac-869c-65773296887c + - 8428a0cc-6e1b-40e3-8102-fd509b2ad215 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"48901271-51bd-4df3-a55e-63dfdeea4ca4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d413e25a-6400-4d4b-ac4f-7aca363060d5","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/48901271-51bd-4df3-a55e-63dfdeea4ca4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d413e25a-6400-4d4b-ac4f-7aca363060d5 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"48901271-51bd-4df3-a55e-63dfdeea4ca4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d413e25a-6400-4d4b-ac4f-7aca363060d5","type":"not_found"}' headers: Content-Length: - "128" @@ -2641,9 +1525,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 18:41:01 GMT + - Wed, 15 Oct 2025 16:33:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2651,7 +1535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36403bc3-bb8a-4b19-9889-5c91a1263e53 + - a3c09711-53cd-4381-88ea-2ec60eac13c3 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.golden b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.golden index df75fb07cc..3319b54fd4 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-kubeconfig-with-flags.golden @@ -3,8 +3,8 @@ apiVersion: v1 clusters: - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCRGdXSGx0cVY5OG1VOHZxCmhCTmVXN0pGMjgrVFp6VE5SV1p3QkhocElIZWo4UkNqdnlhNTZ6eWRSS21YWGMzeWxHWkJEbzZ0NjRjUU1BeVEKRVVmbHlveWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTTG53Tlc5UTdiU1E5eDNieXJLRThwSmFoaXZEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQkN4Smc3Cko1NHB3NzM3QVVtTmRFWjAyS2hscXhHZFZVdlU2Ymc2VHAvZThRSWhBSTRab1lXM3h6TFRFeHVRQVpSYmR3N0wKUDJja3ZHYlFGV0pzTnFPZ1NoZ3kKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= - server: https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443 + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCR3l5c296RE5SbTQzUndhCmVPcnluL2xoVnZ3N0FLc3hXMEdSWTlvU1lHLzdqK2NWQ3hXYjZoZTI0V1V4VU16SFYyMjVvYTQwbStXYWkvV0MKc2NmMW9RU2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJSZHYzTW8vdng0dnc1S0pzeElrZWp3UVJ6NzlUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQitqYUdqCk5jV2tXRjZ0VFlMZmltbEcwWU1lWEFJVGNxcCtCWDljRTJ3N0ZRSWhBTGgwdm94Z2ttaTMzbWwrZnBKNm1zY3kKWHJSMXdEL3hwalV5SWNrcFpLWncKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + server: https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443 name: cli-test-get-kubeconfig-with-flags contexts: - context: @@ -31,4 +31,4 @@ users: interactiveMode: Never 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBd09ERTRNemMxT0ZvWERUTTFNVEF3T0RFNE16YzFPRm93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCRGdXSGx0cVY5OG1VOHZxCmhCTmVXN0pGMjgrVFp6VE5SV1p3QkhocElIZWo4UkNqdnlhNTZ6eWRSS21YWGMzeWxHWkJEbzZ0NjRjUU1BeVEKRVVmbHlveWpRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJTTG53Tlc5UTdiU1E5eDNieXJLRThwSmFoaXZEQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQkN4Smc3Cko1NHB3NzM3QVVtTmRFWjAyS2hscXhHZFZVdlU2Ymc2VHAvZThRSWhBSTRab1lXM3h6TFRFeHVRQVpSYmR3N0wKUDJja3ZHYlFGV0pzTnFPZ1NoZ3kKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://48901271-51bd-4df3-a55e-63dfdeea4ca4.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-flags\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-flags\n user: cli-config-2e6b12a6\n name: admin@cli-test-get-kubeconfig-with-flags\ncurrent-context: admin@cli-test-get-kubeconfig-with-flags\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-2e6b12a6\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - --profile\n - default\n - k8s\n - exec-credential\n command: scw\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" +"apiVersion: v1\nclusters:\n- cluster:\n certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJXekNDQVFHZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQVZNUk13RVFZRFZRUURFd3ByZFdKbGNtNWwKZEdWek1CNFhEVEkxTVRBeE5ERTJNekUwTmxvWERUTTFNVEF4TkRFMk16RTBObG93RlRFVE1CRUdBMVVFQXhNSwphM1ZpWlhKdVpYUmxjekJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCR3l5c296RE5SbTQzUndhCmVPcnluL2xoVnZ3N0FLc3hXMEdSWTlvU1lHLzdqK2NWQ3hXYjZoZTI0V1V4VU16SFYyMjVvYTQwbStXYWkvV0MKc2NmMW9RU2pRakJBTUE0R0ExVWREd0VCL3dRRUF3SUNwREFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZApEZ1FXQkJSZHYzTW8vdng0dnc1S0pzeElrZWp3UVJ6NzlUQUtCZ2dxaGtqT1BRUURBZ05JQURCRkFpQitqYUdqCk5jV2tXRjZ0VFlMZmltbEcwWU1lWEFJVGNxcCtCWDljRTJ3N0ZRSWhBTGgwdm94Z2ttaTMzbWwrZnBKNm1zY3kKWHJSMXdEL3hwalV5SWNrcFpLWncKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\n server: https://d413e25a-6400-4d4b-ac4f-7aca363060d5.api.k8s.fr-par.scw.cloud:6443\n name: cli-test-get-kubeconfig-with-flags\ncontexts:\n- context:\n cluster: cli-test-get-kubeconfig-with-flags\n user: cli-config-2e6b12a6\n name: admin@cli-test-get-kubeconfig-with-flags\ncurrent-context: admin@cli-test-get-kubeconfig-with-flags\nkind: Config\npreferences: {}\nusers:\n- name: cli-config-2e6b12a6\n user:\n exec:\n apiVersion: client.authentication.k8s.io/v1\n args:\n - --profile\n - default\n - k8s\n - exec-credential\n command: scw\n installHint: |-\n This kubeconfig profile require scaleway-cli (scw) to authenticate.\n Installation instruction: https://github.com/scaleway/scaleway-cli#installation\n interactiveMode: Never\n" diff --git a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-keep.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-keep.cassette.yaml index 1c668f3bfa..5aba6c77a0 100644 --- a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-keep.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-keep.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:00 GMT + - Wed, 15 Oct 2025 09:11:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fe595b5-a454-4fb6-af3a-4905574dfe8c + - 2e99c14f-fb35-4b6a-bc3a-5d6b19c7a3c2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", "name":"pn-romantic-brown", + body: '{"id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "name":"pn-interesting-ramanujan", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.051639Z", "updated_at":"2025-10-10T10:23:01.051639Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"2d12c702-5720-4a36-90cd-779231b41e6d", - "created_at":"2025-10-10T10:23:01.051639Z", "updated_at":"2025-10-10T10:23:01.051639Z", - "subnet":"172.17.68.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"a759ce60-a9a7-48c5-aa5a-b327b0a4aab1", "created_at":"2025-10-10T10:23:01.051639Z", - "updated_at":"2025-10-10T10:23:01.051639Z", "subnet":"fd58:6b70:2d5a:4153::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", + "created_at":"2025-10-15T09:11:57.428442Z", "updated_at":"2025-10-15T09:11:57.428442Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"ba1bf0f7-4bbd-4c23-8d3e-61880802f166", + "created_at":"2025-10-15T09:11:57.428442Z", "updated_at":"2025-10-15T09:11:57.428442Z", + "subnet":"172.17.88.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"e509edde-2e2c-4d00-bf23-589b1d535dfa", "created_at":"2025-10-15T09:11:57.428442Z", + "updated_at":"2025-10-15T09:11:57.428442Z", "subnet":"fd58:6b70:2d5a:6826::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", "name":"pn-romantic-brown", + body: '{"id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "name":"pn-interesting-ramanujan", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.051639Z", "updated_at":"2025-10-10T10:23:01.051639Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"2d12c702-5720-4a36-90cd-779231b41e6d", - "created_at":"2025-10-10T10:23:01.051639Z", "updated_at":"2025-10-10T10:23:01.051639Z", - "subnet":"172.17.68.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"a759ce60-a9a7-48c5-aa5a-b327b0a4aab1", "created_at":"2025-10-10T10:23:01.051639Z", - "updated_at":"2025-10-10T10:23:01.051639Z", "subnet":"fd58:6b70:2d5a:4153::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", + "created_at":"2025-10-15T09:11:57.428442Z", "updated_at":"2025-10-15T09:11:57.428442Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"ba1bf0f7-4bbd-4c23-8d3e-61880802f166", + "created_at":"2025-10-15T09:11:57.428442Z", "updated_at":"2025-10-15T09:11:57.428442Z", + "subnet":"172.17.88.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"e509edde-2e2c-4d00-bf23-589b1d535dfa", "created_at":"2025-10-15T09:11:57.428442Z", + "updated_at":"2025-10-15T09:11:57.428442Z", "subnet":"fd58:6b70:2d5a:6826::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1137" + - "1144" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:01 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3bdee2a-eb95-4055-8153-a3b23b09f001 + - 8fe505e4-939c-4482-933e-7df19d9ac1f1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:01.988648Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.410689Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,100 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:01.988648Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.410689Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1575" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 10 Oct 2025 10:23:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae6d9b03-0603-41d5-bbea-b5bdbdaa4f73 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:01.988648Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", - "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb - method: GET - response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:01.988648Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", - "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1539" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d733f86d-0481-490f-96a0-ee4a41e3fdb6 + - b4c33a30-ef40-462c-943f-9ccaec66ac0f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.410689Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.410689Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:07 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a069cd47-fdbb-4e0c-9f5c-5e3718f2541c + - 2727665c-32f5-4d1d-b37e-ad30fee5cbd0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:12 GMT + - Wed, 15 Oct 2025 09:12:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20ac9520-ec79-4c3c-b462-2da449796592 + - facc165e-898a-4253-a89f-7ebf59cb860d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:17 GMT + - Wed, 15 Oct 2025 09:12:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91a0de80-b50f-4091-8403-ee427565d6f4 + - d840ab07-3240-4a5d-996a-96e87702374b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:22 GMT + - Wed, 15 Oct 2025 09:12:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b2f503-e8b2-4a61-aa4b-09d7ab586f2e + - 98d6af5e-df47-4301-ab13-098fdc10a677 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:27 GMT + - Wed, 15 Oct 2025 09:12:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0fb37f2-e108-44ce-b6a4-67917fbb6a5a + - 1f125bee-4317-4d40-ae86-930acd138e07 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:32 GMT + - Wed, 15 Oct 2025 09:12:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cc62356-da96-4603-a4d5-d42636d2831f + - 16c535f1-5967-4a4a-9074-c2d7cf18540f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:37 GMT + - Wed, 15 Oct 2025 09:12:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 150fcbcd-305f-4971-b197-2be5c9a1a966 + - 944ab0ba-c533-4ff5-a1dc-020917c1f4df status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:42 GMT + - Wed, 15 Oct 2025 09:12:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82a1d56e-cd50-45ab-ab7d-f6a027f9acea + - ab0578db-d7d8-47b3-bb98-36a9d033ddba status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:47 GMT + - Wed, 15 Oct 2025 09:12:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85b4d401-0038-454f-98a2-b39666d757f3 + - eae1a29a-b8ad-4c01-a4c0-9cb33a3e3d9f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:52 GMT + - Wed, 15 Oct 2025 09:12:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd5f4106-838a-4f40-80c0-b8e3c7469884 + - c66e2d60-4022-47f1-910c-ab2e575680e4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:57 GMT + - Wed, 15 Oct 2025 09:12:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5059115b-6d28-4115-a423-e6c856c1498d + - 5aa77f49-5f49-43dc-a751-ad4ff7532656 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:02 GMT + - Wed, 15 Oct 2025 09:12:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a26351e-9b6c-4e2f-9114-db7171e329a0 + - 81471192-9a01-4a3c-8e99-bf91a88db48a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:07 GMT + - Wed, 15 Oct 2025 09:12:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60c7cbfa-52bc-48ab-b674-071aa2fccb54 + - 843dd508-8c9c-485d-bc0d-16f70768e5a0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:13 GMT + - Wed, 15 Oct 2025 09:13:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d7e3b64-b5d7-4668-aefa-34c512a749c2 + - c8fe1a11-0447-46cc-8343-cd104a663e13 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:18 GMT + - Wed, 15 Oct 2025 09:13:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b82c9634-1870-4dc4-adb5-a8efbc94d0a9 + - 3b20c4a8-2722-40fa-83d0-ce34296e74a9 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:23 GMT + - Wed, 15 Oct 2025 09:13:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4b11c46-b796-4c51-9a2d-1b596a330098 + - 5336bd8e-5902-4184-a380-c6d5c945e041 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:28 GMT + - Wed, 15 Oct 2025 09:13:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d01458d0-272d-4f90-93c8-0864c5fe6028 + - 6795c9bd-f287-4511-bf9d-407b69805419 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ed37767-1ac2-46c6-a4d9-de073012accf + - 40f5243a-360a-4fc3-88a0-a33cb0af8598 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:38 GMT + - Wed, 15 Oct 2025 09:13:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8409687c-6c2a-437a-a5b4-599a44cf8c2e + - b8b51abb-1360-41e5-8774-00a5d946f0e6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:23:02.528718Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:11:58.991907Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:43 GMT + - Wed, 15 Oct 2025 09:13:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b662b2-17bb-43a1-b45c-748f5838d43c + - 830e3a5e-99cf-409e-8b64-137d049208ad status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:46.156893Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:39.233911Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:46.156893Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:39.233911Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1572" + - "1571" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,7 +1499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94ac1c2-a146-485d-9d60-e0ce76d43a86 + - 1d37c5db-7bdf-4b23-80d7-e1785a771f97 status: 200 OK code: 200 duration: "" @@ -1574,7 +1512,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 method: GET response: @@ -1591,9 +1529,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1601,31 +1539,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed90a983-3686-4fcf-9013-9a9cc3a026c2 + - 84310244-9c5a-4bcc-8847-f6aa3ffbf8de status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSllSRU5EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFZCNFdFdE9hRXhNUmk5MFZqQnFDa0V4ZFcxMWIzbHJkM1JMZDJwRGFWaElaWGQzY0dsRk9USlZXV1pzTnpOdVpsVXJPREJWYjFvclNWTXpZVXRtYlROVmRXSlpUR2xWU2pOM2JIWnBNMkVLV2xkRFRGQmtNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pUTVU1QlRFbFZjWEJSU1hCclJubDVVRTVLT1U1bU55dFJSVGg2UVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVLUVVSQ1IwRnBSVUVyTkVSdENrWldVMGN2UjFSMWFWaHJjemRFVGpGM2NWaFphV0VyTlZOamVrdFNla1ZST1VJMU1YSjBWVU5KVVVSeFNWUkRlV0p5TTB3eGFrbzJSa3BLVEVORE5rOEtlV3R3U1ZsT1FVaHlSRTEzV0hKRWNtMVhjSEJMZHowOUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2JhM2U3YmY0LWFkNzMtNGNkNi05NWQ4LTY4MjQzNGMwYmJiYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAiCiAgICB1c2VyOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDJ5UU1kU1FKM2JhYXA3bE1KRlQwRGFjMjY0UzFGdmZGZHJ3MU1OMTZRd0pHd1R3Z2ZZTzliSFdW"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVUhZNVFtUXdUbVJvZW5kdFpFTkRDbWgxTjJrdldUQm5ielpsZVZCNk1IcDZaMnNyYUZWSlJsZFBiSGhIWm5ac1QzbDNkakIxWldkRVYyTm5LM0ZZYmtKU2RtdExhMDVuY21WWlQwNU5lVXNLTjBNM2NXcG9WMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZCM1dWcEtZakpRTkVSek0zQTVaRWRDT0RGc00zY3hVVkpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUVyVFZWVkNuSlRObFF2UjAxV2MyeDVhR1pJYzJ0UlNYZEZXRGt3TTFjMU1IUklRVzl5WmtsMWNVRnBXVU5KUjA1NmMwRnpUM0Z3UzNKblQxb3lOR3Q2YTFvemFYSUthM2RaYjBKc1RWRTFOWGd3YTBadGRVSm9hemdLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjQ2MTQzMmYtMTU2NS00ZmE4LWJjODgtZDBjYThkZTJlMjM2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcCIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSllSRU5EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFZCNFdFdE9hRXhNUmk5MFZqQnFDa0V4ZFcxMWIzbHJkM1JMZDJwRGFWaElaWGQzY0dsRk9USlZXV1pzTnpOdVpsVXJPREJWYjFvclNWTXpZVXRtYlROVmRXSlpUR2xWU2pOM2JIWnBNMkVLV2xkRFRGQmtNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pUTVU1QlRFbFZjWEJSU1hCclJubDVVRTVLT1U1bU55dFJSVGg2UVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVLUVVSQ1IwRnBSVUVyTkVSdENrWldVMGN2UjFSMWFWaHJjemRFVGpGM2NWaFphV0VyTlZOamVrdFNla1ZST1VJMU1YSjBWVU5KVVVSeFNWUkRlV0p5TTB3eGFrbzJSa3BLVEVORE5rOEtlV3R3U1ZsT1FVaHlSRTEzV0hKRWNtMVhjSEJMZHowOUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2JhM2U3YmY0LWFkNzMtNGNkNi05NWQ4LTY4MjQzNGMwYmJiYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAiCiAgICB1c2VyOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDJ5UU1kU1FKM2JhYXA3bE1KRlQwRGFjMjY0UzFGdmZGZHJ3MU1OMTZRd0pHd1R3Z2ZZTzliSFdW"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVUhZNVFtUXdUbVJvZW5kdFpFTkRDbWgxTjJrdldUQm5ielpsZVZCNk1IcDZaMnNyYUZWSlJsZFBiSGhIWm5ac1QzbDNkakIxWldkRVYyTm5LM0ZZYmtKU2RtdExhMDVuY21WWlQwNU5lVXNLTjBNM2NXcG9WMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZCM1dWcEtZakpRTkVSek0zQTVaRWRDT0RGc00zY3hVVkpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUVyVFZWVkNuSlRObFF2UjAxV2MyeDVhR1pJYzJ0UlNYZEZXRGt3TTFjMU1IUklRVzl5WmtsMWNVRnBXVU5KUjA1NmMwRnpUM0Z3UzNKblQxb3lOR3Q2YTFvemFYSUthM2RaYjBKc1RWRTFOWGd3YTBadGRVSm9hemdLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjQ2MTQzMmYtMTU2NS00ZmE4LWJjODgtZDBjYThkZTJlMjM2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcCIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1846" + - "1786" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1633,31 +1571,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c918d43-8f2e-4f4c-8c32-1a0cb1ddbeb7 + - 07d6fdb3-9bc4-4a73-b2e6-237f6c671949 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSllSRU5EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFZCNFdFdE9hRXhNUmk5MFZqQnFDa0V4ZFcxMWIzbHJkM1JMZDJwRGFWaElaWGQzY0dsRk9USlZXV1pzTnpOdVpsVXJPREJWYjFvclNWTXpZVXRtYlROVmRXSlpUR2xWU2pOM2JIWnBNMkVLV2xkRFRGQmtNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pUTVU1QlRFbFZjWEJSU1hCclJubDVVRTVLT1U1bU55dFJSVGg2UVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVLUVVSQ1IwRnBSVUVyTkVSdENrWldVMGN2UjFSMWFWaHJjemRFVGpGM2NWaFphV0VyTlZOamVrdFNla1ZST1VJMU1YSjBWVU5KVVVSeFNWUkRlV0p5TTB3eGFrbzJSa3BLVEVORE5rOEtlV3R3U1ZsT1FVaHlSRTEzV0hKRWNtMVhjSEJMZHowOUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2JhM2U3YmY0LWFkNzMtNGNkNi05NWQ4LTY4MjQzNGMwYmJiYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAiCiAgICB1c2VyOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDJ5UU1kU1FKM2JhYXA3bE1KRlQwRGFjMjY0UzFGdmZGZHJ3MU1OMTZRd0pHd1R3Z2ZZTzliSFdW"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVUhZNVFtUXdUbVJvZW5kdFpFTkRDbWgxTjJrdldUQm5ielpsZVZCNk1IcDZaMnNyYUZWSlJsZFBiSGhIWm5ac1QzbDNkakIxWldkRVYyTm5LM0ZZYmtKU2RtdExhMDVuY21WWlQwNU5lVXNLTjBNM2NXcG9WMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZCM1dWcEtZakpRTkVSek0zQTVaRWRDT0RGc00zY3hVVkpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUVyVFZWVkNuSlRObFF2UjAxV2MyeDVhR1pJYzJ0UlNYZEZXRGt3TTFjMU1IUklRVzl5WmtsMWNVRnBXVU5KUjA1NmMwRnpUM0Z3UzNKblQxb3lOR3Q2YTFvemFYSUthM2RaYjBKc1RWRTFOWGd3YTBadGRVSm9hemdLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjQ2MTQzMmYtMTU2NS00ZmE4LWJjODgtZDBjYThkZTJlMjM2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcCIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSllSRU5EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVFZCNFdFdE9hRXhNUmk5MFZqQnFDa0V4ZFcxMWIzbHJkM1JMZDJwRGFWaElaWGQzY0dsRk9USlZXV1pzTnpOdVpsVXJPREJWYjFvclNWTXpZVXRtYlROVmRXSlpUR2xWU2pOM2JIWnBNMkVLV2xkRFRGQmtNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pUTVU1QlRFbFZjWEJSU1hCclJubDVVRTVLT1U1bU55dFJSVGg2UVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVLUVVSQ1IwRnBSVUVyTkVSdENrWldVMGN2UjFSMWFWaHJjemRFVGpGM2NWaFphV0VyTlZOamVrdFNla1ZST1VJMU1YSjBWVU5KVVVSeFNWUkRlV0p5TTB3eGFrbzJSa3BLVEVORE5rOEtlV3R3U1ZsT1FVaHlSRTEzV0hKRWNtMVhjSEJMZHowOUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2JhM2U3YmY0LWFkNzMtNGNkNi05NWQ4LTY4MjQzNGMwYmJiYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAiCiAgICB1c2VyOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDJ5UU1kU1FKM2JhYXA3bE1KRlQwRGFjMjY0UzFGdmZGZHJ3MU1OMTZRd0pHd1R3Z2ZZTzliSFdW"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVUhZNVFtUXdUbVJvZW5kdFpFTkRDbWgxTjJrdldUQm5ielpsZVZCNk1IcDZaMnNyYUZWSlJsZFBiSGhIWm5ac1QzbDNkakIxWldkRVYyTm5LM0ZZYmtKU2RtdExhMDVuY21WWlQwNU5lVXNLTjBNM2NXcG9WMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTkZCM1dWcEtZakpRTkVSek0zQTVaRWRDT0RGc00zY3hVVkpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUVyVFZWVkNuSlRObFF2UjAxV2MyeDVhR1pJYzJ0UlNYZEZXRGt3TTFjMU1IUklRVzl5WmtsMWNVRnBXVU5KUjA1NmMwRnpUM0Z3UzNKblQxb3lOR3Q2YTFvemFYSUthM2RaYjBKc1RWRTFOWGd3YTBadGRVSm9hemdLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjQ2MTQzMmYtMTU2NS00ZmE4LWJjODgtZDBjYThkZTJlMjM2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcCIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rZWVwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWtlZXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta2VlcC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1846" + - "1786" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,125 +1603,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85d38cf5-16fa-4250-a622-1e21bc62609c + - 701dce82-5f1f-46c4-a239-df35f7eef99a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:40.452851Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:40.452851Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1611" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 10 Oct 2025 10:24:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 16d90729-4199-4260-8f20-4929ec9a9875 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb - method: GET - response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' - headers: - Content-Length: - - "1575" + - "1610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,61 +1667,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6f00d62-3867-48f3-99e5-9006b10f24b1 + - c18cd5f1-2b42-4139-b47c-33d75b230504 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:40.452851Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"region":"fr-par", "id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.988647Z", - "updated_at":"2025-10-10T10:24:48.770974Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", + body: '{"region":"fr-par", "id":"2461432f-1565-4fa8-bc88-d0ca8de2e236", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.410689Z", + "updated_at":"2025-10-15T09:13:40.452851Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-keep", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2461432f-1565-4fa8-bc88-d0ca8de2e236.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2461432f-1565-4fa8-bc88-d0ca8de2e236.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"ca08a682-97ae-4bc1-baf0-a4753db9661a", - "commitment_ends_at":"2025-10-10T10:23:01.988657Z", "acl_available":true, "iam_nodes_group_id":"4d2beb44-c7ef-431e-80df-03df9626fd91", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"4623b6d9-5c76-4f5c-b8b3-f314e300bee5", + "commitment_ends_at":"2025-10-15T09:11:58.410700Z", "acl_available":true, "iam_nodes_group_id":"cd482e81-55f0-4f36-8fa7-4a0317dc06bc", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1575" + - "1574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:53 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1853,20 +1729,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ea1bd29-fb83-4d43-9048-6984d557505b + - 22e1db0e-e4fd-4685-ac7e-98afab78240e status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2461432f-1565-4fa8-bc88-d0ca8de2e236","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2461432f-1565-4fa8-bc88-d0ca8de2e236 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"ba3e7bf4-ad73-4cd6-95d8-682434c0bbbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2461432f-1565-4fa8-bc88-d0ca8de2e236","type":"not_found"}' headers: Content-Length: - "128" @@ -1875,9 +1751,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:58 GMT + - Wed, 15 Oct 2025 09:13:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,7 +1761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64bcb00b-a106-49c0-88e7-e66e30e9e0cd + - 9ede4008-5ecf-4141-af88-5f8ac8e92ae5 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-kubeconfig.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-kubeconfig.cassette.yaml index f2390994fa..8d1c65018b 100644 --- a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-kubeconfig.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge-kubeconfig.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:00 GMT + - Wed, 15 Oct 2025 09:11:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96493f2a-4b2d-49f5-b2d0-d207be074228 + - fed6c31d-7634-4bbb-b8cb-b54c8b7290d3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", "name":"pn-relaxed-carson", + body: '{"id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "name":"pn-jovial-dijkstra", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:00.904032Z", "updated_at":"2025-10-10T10:23:00.904032Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"0024cd53-953f-4fea-9f50-4b91ef895ca4", - "created_at":"2025-10-10T10:23:00.904032Z", "updated_at":"2025-10-10T10:23:00.904032Z", - "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"78537ce2-4f6e-4e43-9909-8238aadaba03", "created_at":"2025-10-10T10:23:00.904032Z", - "updated_at":"2025-10-10T10:23:00.904032Z", "subnet":"fd58:6b70:2d5a:5dde::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", + "created_at":"2025-10-15T09:11:57.874638Z", "updated_at":"2025-10-15T09:11:57.874638Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"a1acf4e8-3826-485a-85d8-c286c878920f", + "created_at":"2025-10-15T09:11:57.874638Z", "updated_at":"2025-10-15T09:11:57.874638Z", + "subnet":"172.17.60.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"f8512229-c703-451f-a377-b5542c226891", "created_at":"2025-10-15T09:11:57.874638Z", + "updated_at":"2025-10-15T09:11:57.874638Z", "subnet":"fd58:6b70:2d5a:77::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", "name":"pn-relaxed-carson", + body: '{"id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "name":"pn-jovial-dijkstra", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:00.904032Z", "updated_at":"2025-10-10T10:23:00.904032Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"0024cd53-953f-4fea-9f50-4b91ef895ca4", - "created_at":"2025-10-10T10:23:00.904032Z", "updated_at":"2025-10-10T10:23:00.904032Z", - "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"78537ce2-4f6e-4e43-9909-8238aadaba03", "created_at":"2025-10-10T10:23:00.904032Z", - "updated_at":"2025-10-10T10:23:00.904032Z", "subnet":"fd58:6b70:2d5a:5dde::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", + "created_at":"2025-10-15T09:11:57.874638Z", "updated_at":"2025-10-15T09:11:57.874638Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"a1acf4e8-3826-485a-85d8-c286c878920f", + "created_at":"2025-10-15T09:11:57.874638Z", "updated_at":"2025-10-15T09:11:57.874638Z", + "subnet":"172.17.60.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"f8512229-c703-451f-a377-b5542c226891", "created_at":"2025-10-15T09:11:57.874638Z", + "updated_at":"2025-10-15T09:11:57.874638Z", "subnet":"fd58:6b70:2d5a:77::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1137" + - "1136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:01 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7e67511-fe29-4a03-aa44-5e9d9963b760 + - 5418a268-e4d5-495d-91dc-07dd22b8702a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:01.996012Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:58.624332Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,38 +158,38 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:01.996012Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:58.624332Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,61 +197,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8dfe98c-b80b-475e-8b3a-92a366c7cb74 + - 71ef180f-40d7-484e-b47f-7b6d1a7f9082 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:01.996012Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:58.624332Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:01.996012Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:58.624332Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1545" + - "1544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +259,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b1b8f16-7959-41d0-83d7-ab0662025e85 + - 006979be-0374-4b6d-9b16-36745360b91f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:07 GMT + - Wed, 15 Oct 2025 09:12:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +321,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83d50ec9-e6eb-44a3-a95a-a6cd47da9109 + - a1a1e990-9e9d-4fec-ac1c-2e71bf80279b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:12 GMT + - Wed, 15 Oct 2025 09:12:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +383,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ffc1841-b347-48e2-9c2b-31586aab995f + - 1a448cb3-ea4f-4b94-bcfa-eb42265a3183 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:17 GMT + - Wed, 15 Oct 2025 09:12:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +445,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bffd35c-691a-461e-8e0a-eae629e14fc5 + - d63e2046-353a-49ad-a8e1-fd9d01ed46a8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:22 GMT + - Wed, 15 Oct 2025 09:12:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +507,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 110329ea-4dc4-474c-8d98-c85de383ff26 + - a5d3c4fc-7b7a-443c-8162-f73777016119 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:27 GMT + - Wed, 15 Oct 2025 09:12:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +569,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c439a05-6097-4bfe-af7e-bc9e105f072a + - c21a946a-fe35-417e-8d13-4fb165a0ccda status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:32 GMT + - Wed, 15 Oct 2025 09:12:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +631,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce7c3628-26d3-4d9e-8750-5f36b012c353 + - 535e7806-5a91-411d-b460-05df24d6d9eb status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:37 GMT + - Wed, 15 Oct 2025 09:12:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +693,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97b3f4f8-a4cb-474e-889b-f0506cbc2c09 + - 11cda8b1-dc9c-41ba-ac30-77ddf9a3f647 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:42 GMT + - Wed, 15 Oct 2025 09:12:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +755,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 384bb597-cd77-418d-874f-50a0f01f4058 + - 87aca89e-2bb0-4cac-b4eb-021be92342a1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:47 GMT + - Wed, 15 Oct 2025 09:12:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +817,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80926652-580b-4ce3-85ca-1aaf669500a2 + - a8bcc006-aead-4f56-975b-5d326e141ea5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:52 GMT + - Wed, 15 Oct 2025 09:12:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +879,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c01bd5e-5eed-412f-bdeb-20527df7727d + - 6a7b6f3e-7a57-46b5-9c1e-979243261455 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:57 GMT + - Wed, 15 Oct 2025 09:12:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +941,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64b97dee-e94f-403d-b903-6c8d7ce5edd6 + - 728939f0-19f4-4db7-b2b8-5f071e8a084c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:02 GMT + - Wed, 15 Oct 2025 09:12:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +1003,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adcc45eb-8f72-44a6-ab92-d491df48cf34 + - ca1d11e0-c52b-4bf0-af5c-186b831e71b0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:07 GMT + - Wed, 15 Oct 2025 09:13:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +1065,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94960665-cff2-4560-8ec9-1a90436ab539 + - 6be13251-bfd1-4c68-9097-368657faa2e8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:13 GMT + - Wed, 15 Oct 2025 09:13:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +1127,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaba9598-3f87-4cdd-9a78-4607cdf109b9 + - c0350ec5-260d-4e57-84de-98867e7a3f61 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:18 GMT + - Wed, 15 Oct 2025 09:13:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0746a9c0-ce3a-4e80-9598-30f86f0865c8 + - eacbd1a9-df02-4d2a-8ccb-569f96d355e1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:23 GMT + - Wed, 15 Oct 2025 09:13:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 204ade25-c28c-4db4-8492-7c87bce952de + - 3cf667b4-c6a3-4e00-8fe4-5d082592050b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:23:02.629621Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:28 GMT + - Wed, 15 Oct 2025 09:13:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d81a3645-8164-4e23-9e22-24d36c86fffd + - cf942c35-4f79-44ea-a3ca-e2264f08f194 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:32.695073Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:32.695073Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1578" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,39 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7cc69c7-1a3b-4240-b9ca-b140d00ceaa5 + - d269387d-21ef-4ef6-821c-a37bef95a8ac status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "398" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1415,31 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ac2d302-7893-4b2b-9209-38919d0d06c6 + - a7aa6be8-d9a8-44ce-aee4-c5643adc8b71 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWk5MFMzcHVZVTF3VDFKaGJrSmlDbTlqYlRZMFNuWXhWR2RNTTNOTVdscFZTMVV3VldSQk5uWlJXRk5XY1hsNU9HOVJUMVp5V0ZsM1FsZG1hM1pYU0hsMVFsUk1jRU5qVDNFM2Rta3lZekFLTDNkNldqQnNaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmtnMFdGaGpiMmRqUm1kMVNVNXlVM05PVGxwMFQzUmhRVVZxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZyWWxOc0NqaHhVakl5ZVZKMlpXMDNZV1YzY2xKeWNUaHFWVGRMZEhjNGVTdHRZWEJEYUhweFEwcENkME5KUkZnNE5taHRjMk5EYVc5SE16TmljazAyZEZGeFdERUtkSG8xVjJWRFFrVmxUa0ZzTVdWSlNHNDFRbU1LTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDRiZTI4YzQtODk0YS00MWM4LWJhYzAtNTdjMDgxMDM2OTg4LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMnVOaEFIdnVaMW1PdVFpRlJ1MXBodjhUUno2R2lIWHFtSWlma1dLTTRhd1VjYnBYQUhyajVHTm0="}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWk5MFMzcHVZVTF3VDFKaGJrSmlDbTlqYlRZMFNuWXhWR2RNTTNOTVdscFZTMVV3VldSQk5uWlJXRk5XY1hsNU9HOVJUMVp5V0ZsM1FsZG1hM1pYU0hsMVFsUk1jRU5qVDNFM2Rta3lZekFLTDNkNldqQnNaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmtnMFdGaGpiMmRqUm1kMVNVNXlVM05PVGxwMFQzUmhRVVZxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZyWWxOc0NqaHhVakl5ZVZKMlpXMDNZV1YzY2xKeWNUaHFWVGRMZEhjNGVTdHRZWEJEYUhweFEwcENkME5KUkZnNE5taHRjMk5EYVc5SE16TmljazAyZEZGeFdERUtkSG8xVjJWRFFrVmxUa0ZzTVdWSlNHNDFRbU1LTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDRiZTI4YzQtODk0YS00MWM4LWJhYzAtNTdjMDgxMDM2OTg4LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMnVOaEFIdnVaMW1PdVFpRlJ1MXBodjhUUno2R2lIWHFtSWlma1dLTTRhd1VjYnBYQUhyajVHTm0="}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1890" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1447,31 +1499,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 131fa4a5-19ed-42ce-afb3-9955511ab6d3 + - d3256930-1e2d-4a27-a87f-8e74d64067af status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWk5MFMzcHVZVTF3VDFKaGJrSmlDbTlqYlRZMFNuWXhWR2RNTTNOTVdscFZTMVV3VldSQk5uWlJXRk5XY1hsNU9HOVJUMVp5V0ZsM1FsZG1hM1pYU0hsMVFsUk1jRU5qVDNFM2Rta3lZekFLTDNkNldqQnNaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmtnMFdGaGpiMmRqUm1kMVNVNXlVM05PVGxwMFQzUmhRVVZxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZyWWxOc0NqaHhVakl5ZVZKMlpXMDNZV1YzY2xKeWNUaHFWVGRMZEhjNGVTdHRZWEJEYUhweFEwcENkME5KUkZnNE5taHRjMk5EYVc5SE16TmljazAyZEZGeFdERUtkSG8xVjJWRFFrVmxUa0ZzTVdWSlNHNDFRbU1LTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDRiZTI4YzQtODk0YS00MWM4LWJhYzAtNTdjMDgxMDM2OTg4LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMnVOaEFIdnVaMW1PdVFpRlJ1MXBodjhUUno2R2lIWHFtSWlma1dLTTRhd1VjYnBYQUhyajVHTm0="}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZDA5VVJYZE5hazEzVFd4dldFUlVUVEZOVkVGM1QxUkZkMDFxVFhkTmJHOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWk5MFMzcHVZVTF3VDFKaGJrSmlDbTlqYlRZMFNuWXhWR2RNTTNOTVdscFZTMVV3VldSQk5uWlJXRk5XY1hsNU9HOVJUMVp5V0ZsM1FsZG1hM1pYU0hsMVFsUk1jRU5qVDNFM2Rta3lZekFLTDNkNldqQnNaV3BSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmtnMFdGaGpiMmRqUm1kMVNVNXlVM05PVGxwMFQzUmhRVVZxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZyWWxOc0NqaHhVakl5ZVZKMlpXMDNZV1YzY2xKeWNUaHFWVGRMZEhjNGVTdHRZWEJEYUhweFEwcENkME5KUkZnNE5taHRjMk5EYVc5SE16TmljazAyZEZGeFdERUtkSG8xVjJWRFFrVmxUa0ZzTVdWSlNHNDFRbU1LTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDRiZTI4YzQtODk0YS00MWM4LWJhYzAtNTdjMDgxMDM2OTg4LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMnVOaEFIdnVaMW1PdVFpRlJ1MXBodjhUUno2R2lIWHFtSWlma1dLTTRhd1VjYnBYQUhyajVHTm0="}' + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1890" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,63 +1561,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cbbd77d-18c0-4825-a71c-902abd9eb6a5 + - 3aa84c52-0b9c-43be-b66c-877fdd27c5f9 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988?with_additional_resources=true - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1617" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1543,61 +1623,1345 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 886e4259-5101-45da-b882-d180e92be681 + - 207f0437-7f8f-4cc9-b97a-4655919e5757 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bffccf3e-65d9-43ea-8bfd-9b71c96528fe + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39183884-429d-40a6-a16b-b49102b47276 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8928a7ad-dff2-4700-a9ab-9d156924d46f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fcdbbc7e-5453-4a84-8f67-ce738d0392e7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d93b21b9-095b-4aab-b604-d68211d84b5f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da4cbcc1-3643-4e3d-b7d3-c69d4dc52131 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a51fe78b-f6b2-4515-aeb9-a25945ad80c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb9074b7-2202-48df-9a31-14040b87e572 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0d85a6b-5228-4825-beb4-ac372e3856bd + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0dcc89c-8ce1-4b32-9f71-9a1a864668ac + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cd94294-7bda-48b7-9aff-03c51bb8e239 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ed62c3b-4da4-4df2-b71e-680624bb6309 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:14:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b36bcb9e-cbdf-4ea3-8252-ad5113daf675 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7c4d28d-887c-4cf1-ade9-1e9dcd46c0c3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1417766-9c4d-453d-b9c7-1cfe194f4d2a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ea24885-9ed1-4745-a8a5-b6a75f4458b3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b1e467e-d491-4476-a1c9-fada3cfcae8a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:11:59.174400Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1580" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0d424ab-46d7-4b8a-9094-30a289b78927 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:24.031952Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 + method: GET + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:24.031952Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1577" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d6c7315-6a01-49ff-9c42-c6b50b2a8d31 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland + regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", + "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 + method: GET + response: + body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland + regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", + "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + headers: + Content-Length: + - "398" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42f7105f-575c-4653-8904-083d035ae376 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUm5nNFlWazBLMU5TZFVkWlZraDZDa3hEVFZOUE1VTnFXbGxCUW0xNVpXZHVTM2hoT1dKelQwa3JXVkZSYzFkbFMyODViVmRxYzNKRmNGaDNWRTVTU2t3eU5uQklibWhMVnpkQ2FGRm9NRVlLYjJkbWVuaHZNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSU2xoUWVXUTJOa3RxWVV4T1REUmhVVzB5TmpCQlQxWm5ZbmRxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFJoYUVOdENuQm1URFZHZUVSUGVrVlhVVFF3UkVSVldtZHdkbXhZVjBKRlVEUnBhMVJrYkUwMlZWUkJTV2hCVEdsQk1FaFdjamRaTm1SMVRsbzNja1J6UkVsQ1kyc0tkbEE0YUZOeFNVcHRLMnhJYUd4RlltUlNPVVVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzViN2Q3YmQtNjE4Zi00NTQ0LWFiNWYtODNjODFhZTg0M2I1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5/kubeconfig?redacted=true + method: GET + response: + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUm5nNFlWazBLMU5TZFVkWlZraDZDa3hEVFZOUE1VTnFXbGxCUW0xNVpXZHVTM2hoT1dKelQwa3JXVkZSYzFkbFMyODViVmRxYzNKRmNGaDNWRTVTU2t3eU5uQklibWhMVnpkQ2FGRm9NRVlLYjJkbWVuaHZNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSU2xoUWVXUTJOa3RxWVV4T1REUmhVVzB5TmpCQlQxWm5ZbmRxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFJoYUVOdENuQm1URFZHZUVSUGVrVlhVVFF3UkVSVldtZHdkbXhZVjBKRlVEUnBhMVJrYkUwMlZWUkJTV2hCVEdsQk1FaFdjamRaTm1SMVRsbzNja1J6UkVsQ1kyc0tkbEE0YUZOeFNVcHRLMnhJYUd4RlltUlNPVVVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzViN2Q3YmQtNjE4Zi00NTQ0LWFiNWYtODNjODFhZTg0M2I1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' + headers: + Content-Length: + - "1834" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5969ec00-ef3f-4538-8e92-1ed456b550e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUm5nNFlWazBLMU5TZFVkWlZraDZDa3hEVFZOUE1VTnFXbGxCUW0xNVpXZHVTM2hoT1dKelQwa3JXVkZSYzFkbFMyODViVmRxYzNKRmNGaDNWRTVTU2t3eU5uQklibWhMVnpkQ2FGRm9NRVlLYjJkbWVuaHZNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSU2xoUWVXUTJOa3RxWVV4T1REUmhVVzB5TmpCQlQxWm5ZbmRxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFJoYUVOdENuQm1URFZHZUVSUGVrVlhVVFF3UkVSVldtZHdkbXhZVjBKRlVEUnBhMVJrYkUwMlZWUkJTV2hCVEdsQk1FaFdjamRaTm1SMVRsbzNja1J6UkVsQ1kyc0tkbEE0YUZOeFNVcHRLMnhJYUd4RlltUlNPVVVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzViN2Q3YmQtNjE4Zi00NTQ0LWFiNWYtODNjODFhZTg0M2I1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5/kubeconfig?redacted=true + method: GET + response: + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5WRVV4VDBadldFUlVUVEZOVkVGNFRrUkJOVTFVUlRGUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUm5nNFlWazBLMU5TZFVkWlZraDZDa3hEVFZOUE1VTnFXbGxCUW0xNVpXZHVTM2hoT1dKelQwa3JXVkZSYzFkbFMyODViVmRxYzNKRmNGaDNWRTVTU2t3eU5uQklibWhMVnpkQ2FGRm9NRVlLYjJkbWVuaHZNbXBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSU2xoUWVXUTJOa3RxWVV4T1REUmhVVzB5TmpCQlQxWm5ZbmRxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRbFJoYUVOdENuQm1URFZHZUVSUGVrVlhVVFF3UkVSVldtZHdkbXhZVjBKRlVEUnBhMVJrYkUwMlZWUkJTV2hCVEdsQk1FaFdjamRaTm1SMVRsbzNja1J6UkVsQ1kyc0tkbEE0YUZOeFNVcHRLMnhJYUd4RlltUlNPVVVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzViN2Q3YmQtNjE4Zi00NTQ0LWFiNWYtODNjODFhZTg0M2I1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZyIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1rdWJlY29uZmlnLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWt1YmVjb25maWcKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2Uta3ViZWNvbmZpZy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' + headers: + Content-Length: + - "1834" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:15:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 140d3ee0-ca24-424e-9ded-1604d3c48500 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5?with_additional_resources=true + method: DELETE + response: + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1616" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,61 +2969,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3ae685e-9ba5-4622-9f45-44f04bac18bb + - f4c5028b-1b08-4a8c-87b6-c56ab27c21d6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:39 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,61 +3031,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e3d934d-1f6b-4794-8f94-d3078bb03689 + - 39c48884-7738-4aea-b105-42bde0d15af7 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"region":"fr-par", "id":"04be28c4-894a-41c8-bac0-57c081036988", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:01.996012Z", - "updated_at":"2025-10-10T10:24:33.842291Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", + body: '{"region":"fr-par", "id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.624332Z", + "updated_at":"2025-10-15T09:15:27.155172Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge-kubeconfig", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://04be28c4-894a-41c8-bac0-57c081036988.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.04be28c4-894a-41c8-bac0-57c081036988.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c5b7d7bd-618f-4544-ab5f-83c81ae843b5.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c5b7d7bd-618f-4544-ab5f-83c81ae843b5.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c7c6395-66ae-431f-a2c5-109e39c317ab", - "commitment_ends_at":"2025-10-10T10:23:01.996027Z", "acl_available":true, "iam_nodes_group_id":"34f4af8c-e4cc-471a-91cf-92c6f3d6e6fe", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"0a0a9a0d-f7a8-4844-ab8f-ec44fc0e26dd", + "commitment_ends_at":"2025-10-15T09:11:58.624336Z", "acl_available":true, "iam_nodes_group_id":"525668de-8d97-4c32-ade8-aa8fe2d72a3d", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1581" + - "1580" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:44 GMT + - Wed, 15 Oct 2025 09:15:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1729,20 +3093,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cc5c45f-3164-4a36-867c-458556613889 + - 7546ebdd-0503-430f-ac49-5d388b659be2 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"04be28c4-894a-41c8-bac0-57c081036988","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04be28c4-894a-41c8-bac0-57c081036988 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c5b7d7bd-618f-4544-ab5f-83c81ae843b5 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"04be28c4-894a-41c8-bac0-57c081036988","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c5b7d7bd-618f-4544-ab5f-83c81ae843b5","type":"not_found"}' headers: Content-Length: - "128" @@ -1751,9 +3115,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:49 GMT + - Wed, 15 Oct 2025 09:15:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1761,7 +3125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b16c052-df53-4204-98c7-d4ed34c74c7c + - b0c368e7-41f8-4fbd-8110-b0057ae596a8 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge.cassette.yaml index 287581f3f0..f85bd10deb 100644 --- a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-merge.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:00 GMT + - Wed, 15 Oct 2025 09:11:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47a281b0-bf56-4cb6-934e-8520ffe15ee5 + - 39d5bfcb-d7cd-4c10-981b-45956ad82ceb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", "name":"pn-adoring-minsky", + body: '{"id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "name":"pn-peaceful-mestorf", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.269312Z", "updated_at":"2025-10-10T10:23:01.269312Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"06932adb-fff9-4a87-9f2e-df4f062af8b7", - "created_at":"2025-10-10T10:23:01.269312Z", "updated_at":"2025-10-10T10:23:01.269312Z", - "subnet":"172.17.72.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"d87636e6-6335-4270-ba4d-132d51548510", "created_at":"2025-10-10T10:23:01.269312Z", - "updated_at":"2025-10-10T10:23:01.269312Z", "subnet":"fd58:6b70:2d5a:1e86::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", + "created_at":"2025-10-15T09:11:57.776339Z", "updated_at":"2025-10-15T09:11:57.776339Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"3f175ca8-fff4-441f-b48c-e6bd2c3a3add", + "created_at":"2025-10-15T09:11:57.776339Z", "updated_at":"2025-10-15T09:11:57.776339Z", + "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"6a2fdb0f-dac2-47fa-ad8a-baa44a368f66", "created_at":"2025-10-15T09:11:57.776339Z", + "updated_at":"2025-10-15T09:11:57.776339Z", "subnet":"fd58:6b70:2d5a:88e8::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", "name":"pn-adoring-minsky", + body: '{"id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "name":"pn-peaceful-mestorf", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.269312Z", "updated_at":"2025-10-10T10:23:01.269312Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"06932adb-fff9-4a87-9f2e-df4f062af8b7", - "created_at":"2025-10-10T10:23:01.269312Z", "updated_at":"2025-10-10T10:23:01.269312Z", - "subnet":"172.17.72.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"d87636e6-6335-4270-ba4d-132d51548510", "created_at":"2025-10-10T10:23:01.269312Z", - "updated_at":"2025-10-10T10:23:01.269312Z", "subnet":"fd58:6b70:2d5a:1e86::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", + "created_at":"2025-10-15T09:11:57.776339Z", "updated_at":"2025-10-15T09:11:57.776339Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"3f175ca8-fff4-441f-b48c-e6bd2c3a3add", + "created_at":"2025-10-15T09:11:57.776339Z", "updated_at":"2025-10-15T09:11:57.776339Z", + "subnet":"172.17.48.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"6a2fdb0f-dac2-47fa-ad8a-baa44a368f66", "created_at":"2025-10-15T09:11:57.776339Z", + "updated_at":"2025-10-15T09:11:57.776339Z", "subnet":"fd58:6b70:2d5a:88e8::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1137" + - "1139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:01 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ff0b212-2a4b-44d4-af47-8c57e0b5cbe8 + - 2396faad-0170-4ed6-86c5-9637f2519c40 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.199933Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:58.549610Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,38 +158,1030 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.199933Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:58.549610Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1570" + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:11:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 544805c9-a978-420d-8100-2b868e47b387 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:58.549610Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:58.549610Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:11:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 211d8d7f-111a-4110-9e9e-eb715d13c3e7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e2e991f-01da-4f72-a223-3ecf8b3423ad + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2831fb70-0423-4124-8452-c2c21f36e5e9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c66607a8-58a5-4309-a503-408564607589 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 164b9693-6d7d-4de0-a4ca-4a8e6d69b755 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e3c9113-3d02-4366-90ea-83e951b35f8d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75b0d050-0e02-421a-b2a7-550857c04213 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cd71633-27f4-41f8-91a6-ccc3d33222e9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62f40f9a-a77b-46f4-aafe-4d111fb818db + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fb9d9ba-8969-4de1-bf0d-13d0e89956f0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fac32f21-3e60-4a4b-975a-3751a7e44d51 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c1b52a1-011d-480a-8536-a5242b0a8359 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a510d98-558e-493f-a36d-230518a44eba + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea0754e7-20df-4620-abe3-69fa0c77b64c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e3c4a6a-356c-4611-a8b4-1c91d92ef157 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 + method: GET + response: + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:13:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,61 +1189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 097ac6ba-4147-4fca-9bd4-317ee99ffb7f + - c75dc482-6228-4473-8f4c-35de9ab916d3 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.199933Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.199933Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1534" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:13:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +1251,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 534a1a92-4bca-4a44-8aaf-7eb79139f61c + - a722580e-f392-4965-83e2-ce619b7bc86b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:07 GMT + - Wed, 15 Oct 2025 09:13:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +1313,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbde0c51-0a21-4a6b-910d-867f251d3e5b + - ab0c3c2e-515b-4176-b130-430d2d92fc8b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:12 GMT + - Wed, 15 Oct 2025 09:13:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78466455-1193-4226-8494-f2b31d3416fb + - 4966b9e4-7d13-4335-af7b-10af52ff03f5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:17 GMT + - Wed, 15 Oct 2025 09:13:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d0298f5-5cb4-46ef-8acb-c3ee02c7a878 + - 36d7738f-2772-4d47-96de-f785b1d3aa9f status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:22 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +1499,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7b5e324-4ce6-40e0-a054-5e79984560c6 + - ebc023a3-7c81-4cb8-b426-f2b4e57b0565 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:27 GMT + - Wed, 15 Oct 2025 09:13:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +1561,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9a42ed8-f47b-4382-bc7c-2f7737aebfb7 + - e3dbed5a-da26-4f87-8b7a-a41961fec1e8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:32 GMT + - Wed, 15 Oct 2025 09:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +1623,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1524870d-161d-4237-a012-4d0c648ec956 + - 13c5774a-eee6-4f0b-a721-c331e2585621 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:37 GMT + - Wed, 15 Oct 2025 09:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +1685,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aae29895-0b65-45d4-85ac-faae29f634d1 + - 9e7ca3ab-c52c-4e74-971d-7cc412e4a2af status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:42 GMT + - Wed, 15 Oct 2025 09:14:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +1747,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9557dc3-5883-4196-9267-f06ed0aeb421 + - ea5c1fe3-abfd-4cd7-9db1-8c3b70682759 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:47 GMT + - Wed, 15 Oct 2025 09:14:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +1809,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9fbed18-6b2e-47ba-aacb-7211e4541c1b + - a8ca99b9-78d9-4710-a30c-208aff458191 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:53 GMT + - Wed, 15 Oct 2025 09:14:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +1871,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fb72630-f581-4825-a1df-109db530c381 + - 16eddc0c-47ab-4cd5-bb8b-74c7b4c79e96 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:58 GMT + - Wed, 15 Oct 2025 09:14:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +1933,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e516f4ac-344f-4a7e-aae7-a5f80a4fd89b + - 16ac5cba-4a1a-478e-9447-367f36ea27ba status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:03 GMT + - Wed, 15 Oct 2025 09:14:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +1995,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d92f19a6-691a-4894-80f0-b798a90dcaa6 + - 1a0e171a-9e35-40d4-8468-46215003e08a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:08 GMT + - Wed, 15 Oct 2025 09:14:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +2057,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54a25303-b794-4017-9bae-93967611b297 + - 156b1285-aedf-417e-80c8-c041d8c3c9d1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:13 GMT + - Wed, 15 Oct 2025 09:14:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +2119,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6698c0fe-d1fa-4acd-90f9-e56e5e0cc63e + - 2b4df6f0-c8bc-4efc-bd5a-06db10eac9c5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:18 GMT + - Wed, 15 Oct 2025 09:14:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +2181,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 441ade32-f34e-4f01-acf3-9df235c76a4f + - d5b0e91b-e1be-4b00-acfd-e91e71d44a5c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:23 GMT + - Wed, 15 Oct 2025 09:14:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +2243,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad53a8b9-3c9b-41c6-952c-9363e20f92d1 + - ac8cd009-cae4-4701-b087-23bdb34e23f5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:28 GMT + - Wed, 15 Oct 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +2305,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8593c3a-3b4a-4c3d-ada6-5a1f348278e2 + - 91b069e0-c40c-49c0-9dfd-7e50387a5e61 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +2367,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c874ae7-4a23-4b8a-8991-04e510532a5c + - 9591f29c-eee6-4800-9ec3-c30bd664b042 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:38 GMT + - Wed, 15 Oct 2025 09:14:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +2429,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98a22aa6-652c-4688-b71b-746fde2c31fb + - 3102a421-5c97-419f-a6cf-38e5a0496f9c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:43 GMT + - Wed, 15 Oct 2025 09:15:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +2491,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 055d500f-c720-439e-a4fd-c95dda28134a + - 7008281a-6282-4ca0-be20-309aa75d4b0a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:15:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +2553,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf937a5d-8f6a-4931-ace9-ee227b6f1f6f + - d1a9a015-2791-450c-9484-7067ab2feb70 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:54 GMT + - Wed, 15 Oct 2025 09:15:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,61 +2615,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d9f315d-d0c4-4701-aac9-e403e6fc851f + - a9ae844b-6bab-49ef-bc6c-f1afe5d5d38c status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:59 GMT + - Wed, 15 Oct 2025 09:15:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,61 +2677,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0558c96-1154-4754-b093-10acc39171f8 + - 842ab454-b997-4b96-9497-54bb119dc8f0 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:23:02.841920Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:11:59.068365Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:04 GMT + - Wed, 15 Oct 2025 09:15:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1747,61 +2739,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bade6967-a71a-4e6f-9dce-05c1b82a9501 + - 4abdcbd5-3c88-4cc0-9bd1-a8954c190b9e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:08.801236Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:26.079547Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:08.801236Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:26.079547Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1567" + - "1566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,7 +2801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4486c23d-4de0-44f7-babc-b14274a45f29 + - cadec635-2ff9-4794-85d5-2a43ca029cd3 status: 200 OK code: 200 duration: "" @@ -1822,7 +2814,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 method: GET response: @@ -1839,9 +2831,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1849,31 +2841,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f80a0f4b-0e2d-472f-849f-87a0a38cf78c + - b24e4024-ec54-48ca-b625-41e68119e663 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOVVSWGROYWsxM1RXeHZXRVJVVFRGTlZFRjNUMVJGZDAxcVRYZE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MwUTRWbU5GV2xoM01qTmlja0l3Q2xsYVZqRXhibkl4YjBONk5EQmFaazgxUTNkdmVWTndaakl5U2tKVGRrRlJXVU4yU1dwaGFsbElTMlV6VDA5eFVGRlZWa1ZITTBjdk9XWlJhVFZOYUdzS1lWUnZWbVowVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNuRjRLelZYWVVaRVlYWlBNbmhTVlVWelJVczNiRm80TDNkcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMk16aFdDbmxuUzFKMk1qaDJlRGhDUXpWYUswZERlVEpoTjBGTmFtbEtNRkJKYm5kMlpFMUhMM054YjBOSlFsTlZZV3hySzNreFMxTTNlRGRxVjFCbVNGcE5TVzRLYUhCWGVHODNTVzVKTjFkTWRTdFlkMkZpYWxvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNmM0NDNjLWNmMjYtNDA5OS1iZTg4LWVjMDU3YzIwODNlYS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeEszMFBvTVRhSFZIWDlqZnNjWkFvZ2lEeFhzODIwZ0VvRHZUY2RIRnZ5R2JINjFFaDI1VEttQkc="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVRVFZOVkVVeFQwWnZXRVJVVFRGTlZFRjRUa1JCTlUxVVJURlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1RYQXZkVXg0WjBScU1ISnVaazQ1Q2xkSGRrTmFhQzgxV2pCVGJXaDRSV2RRYjBoWFZqWm1PVVJpVEZORFVYUlJWV2gwWkc5SWJtWlFhalEzZUhKWGJHWTRhbFEyTWxWRldUZzJTbGx4VkVZS2FUSlBURXRUVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZFVlRSeXMyZVhsTFNYZFlSa1pPTTJSVVpGRjRXR2MxVGxkRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUWpORWJWTTBDa1ZITnpsNGJGSlBZazlEYVdaR1VHODRValV6ZFRjMFlWZFpUeTh4THpKcFVYWlZhbVZuU1dkRWRUVnNNVzVYVjBaSlowcFlZMGhEVFV0dGQwMVRUR3dLWlZsQlpIaDNkaTl0VUVwbWRUbEhNRUUxTkQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzJlNmU4NDhmLTQzNzAtNDA4Ni1hNDQ3LTlhOGRhZDY5MmEyOC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOVVSWGROYWsxM1RXeHZXRVJVVFRGTlZFRjNUMVJGZDAxcVRYZE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MwUTRWbU5GV2xoM01qTmlja0l3Q2xsYVZqRXhibkl4YjBONk5EQmFaazgxUTNkdmVWTndaakl5U2tKVGRrRlJXVU4yU1dwaGFsbElTMlV6VDA5eFVGRlZWa1ZITTBjdk9XWlJhVFZOYUdzS1lWUnZWbVowVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNuRjRLelZYWVVaRVlYWlBNbmhTVlVWelJVczNiRm80TDNkcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMk16aFdDbmxuUzFKMk1qaDJlRGhDUXpWYUswZERlVEpoTjBGTmFtbEtNRkJKYm5kMlpFMUhMM054YjBOSlFsTlZZV3hySzNreFMxTTNlRGRxVjFCbVNGcE5TVzRLYUhCWGVHODNTVzVKTjFkTWRTdFlkMkZpYWxvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNmM0NDNjLWNmMjYtNDA5OS1iZTg4LWVjMDU3YzIwODNlYS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeEszMFBvTVRhSFZIWDlqZnNjWkFvZ2lEeFhzODIwZ0VvRHZUY2RIRnZ5R2JINjFFaDI1VEttQkc="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVRVFZOVkVVeFQwWnZXRVJVVFRGTlZFRjRUa1JCTlUxVVJURlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1RYQXZkVXg0WjBScU1ISnVaazQ1Q2xkSGRrTmFhQzgxV2pCVGJXaDRSV2RRYjBoWFZqWm1PVVJpVEZORFVYUlJWV2gwWkc5SWJtWlFhalEzZUhKWGJHWTRhbFEyTWxWRldUZzJTbGx4VkVZS2FUSlBURXRUVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZFVlRSeXMyZVhsTFNYZFlSa1pPTTJSVVpGRjRXR2MxVGxkRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUWpORWJWTTBDa1ZITnpsNGJGSlBZazlEYVdaR1VHODRValV6ZFRjMFlWZFpUeTh4THpKcFVYWlZhbVZuU1dkRWRUVnNNVzVYVjBaSlowcFlZMGhEVFV0dGQwMVRUR3dLWlZsQlpIaDNkaTl0VUVwbWRUbEhNRUUxTkQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzJlNmU4NDhmLTQzNzAtNDA4Ni1hNDQ3LTlhOGRhZDY5MmEyOC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1802" + - "1746" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1881,31 +2873,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15088a82-ede7-4bdb-8f1b-0bfe41e1f781 + - 2796d83f-f8ac-47c4-82fa-2319d0d7f58d status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOVVSWGROYWsxM1RXeHZXRVJVVFRGTlZFRjNUMVJGZDAxcVRYZE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MwUTRWbU5GV2xoM01qTmlja0l3Q2xsYVZqRXhibkl4YjBONk5EQmFaazgxUTNkdmVWTndaakl5U2tKVGRrRlJXVU4yU1dwaGFsbElTMlV6VDA5eFVGRlZWa1ZITTBjdk9XWlJhVFZOYUdzS1lWUnZWbVowVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNuRjRLelZYWVVaRVlYWlBNbmhTVlVWelJVczNiRm80TDNkcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMk16aFdDbmxuUzFKMk1qaDJlRGhDUXpWYUswZERlVEpoTjBGTmFtbEtNRkJKYm5kMlpFMUhMM054YjBOSlFsTlZZV3hySzNreFMxTTNlRGRxVjFCbVNGcE5TVzRLYUhCWGVHODNTVzVKTjFkTWRTdFlkMkZpYWxvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNmM0NDNjLWNmMjYtNDA5OS1iZTg4LWVjMDU3YzIwODNlYS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeEszMFBvTVRhSFZIWDlqZnNjWkFvZ2lEeFhzODIwZ0VvRHZUY2RIRnZ5R2JINjFFaDI1VEttQkc="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVRVFZOVkVVeFQwWnZXRVJVVFRGTlZFRjRUa1JCTlUxVVJURlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1RYQXZkVXg0WjBScU1ISnVaazQ1Q2xkSGRrTmFhQzgxV2pCVGJXaDRSV2RRYjBoWFZqWm1PVVJpVEZORFVYUlJWV2gwWkc5SWJtWlFhalEzZUhKWGJHWTRhbFEyTWxWRldUZzJTbGx4VkVZS2FUSlBURXRUVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZFVlRSeXMyZVhsTFNYZFlSa1pPTTJSVVpGRjRXR2MxVGxkRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUWpORWJWTTBDa1ZITnpsNGJGSlBZazlEYVdaR1VHODRValV6ZFRjMFlWZFpUeTh4THpKcFVYWlZhbVZuU1dkRWRUVnNNVzVYVjBaSlowcFlZMGhEVFV0dGQwMVRUR3dLWlZsQlpIaDNkaTl0VUVwbWRUbEhNRUUxTkQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzJlNmU4NDhmLTQzNzAtNDA4Ni1hNDQ3LTlhOGRhZDY5MmEyOC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmQwOVVSWGROYWsxM1RXeHZXRVJVVFRGTlZFRjNUMVJGZDAxcVRYZE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MwUTRWbU5GV2xoM01qTmlja0l3Q2xsYVZqRXhibkl4YjBONk5EQmFaazgxUTNkdmVWTndaakl5U2tKVGRrRlJXVU4yU1dwaGFsbElTMlV6VDA5eFVGRlZWa1ZITTBjdk9XWlJhVFZOYUdzS1lWUnZWbVowVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVWNuRjRLelZYWVVaRVlYWlBNbmhTVlVWelJVczNiRm80TDNkcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGMk16aFdDbmxuUzFKMk1qaDJlRGhDUXpWYUswZERlVEpoTjBGTmFtbEtNRkJKYm5kMlpFMUhMM054YjBOSlFsTlZZV3hySzNreFMxTTNlRGRxVjFCbVNGcE5TVzRLYUhCWGVHODNTVzVKTjFkTWRTdFlkMkZpYWxvS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzBkNmM0NDNjLWNmMjYtNDA5OS1iZTg4LWVjMDU3YzIwODNlYS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeEszMFBvTVRhSFZIWDlqZnNjWkFvZ2lEeFhzODIwZ0VvRHZUY2RIRnZ5R2JINjFFaDI1VEttQkc="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVFNUVRVFZOVkVVeFQwWnZXRVJVVFRGTlZFRjRUa1JCTlUxVVJURlBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1RYQXZkVXg0WjBScU1ISnVaazQ1Q2xkSGRrTmFhQzgxV2pCVGJXaDRSV2RRYjBoWFZqWm1PVVJpVEZORFVYUlJWV2gwWkc5SWJtWlFhalEzZUhKWGJHWTRhbFEyTWxWRldUZzJTbGx4VkVZS2FUSlBURXRUVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZFVlRSeXMyZVhsTFNYZFlSa1pPTTJSVVpGRjRXR2MxVGxkRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUWpORWJWTTBDa1ZITnpsNGJGSlBZazlEYVdaR1VHODRValV6ZFRjMFlWZFpUeTh4THpKcFVYWlZhbVZuU1dkRWRUVnNNVzVYVjBaSlowcFlZMGhEVFV0dGQwMVRUR3dLWlZsQlpIaDNkaTl0VUVwbWRUbEhNRUUxTkQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzJlNmU4NDhmLTQzNzAtNDA4Ni1hNDQ3LTlhOGRhZDY5MmEyOC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1802" + - "1746" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1913,63 +2905,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7424ca06-636f-4d90-a4d6-6a9780fa7e39 + - 5f4bdbb3-1c3a-4440-aba9-359e93fd32df status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1606" + - "1605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1977,61 +2969,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb384421-9267-490c-af10-1122f98ebe2d + - 3dd79e8f-3b85-45d7-8f42-81fb4e95dacf status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:09 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2039,61 +3031,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5fe795b-053b-44ad-b8ff-5d361e52fb67 + - cb4cf8ac-a484-42b0-bda6-480c23aa82a3 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"region":"fr-par", "id":"0d6c443c-cf26-4099-be88-ec057c2083ea", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.199932Z", - "updated_at":"2025-10-10T10:25:09.474010Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", + body: '{"region":"fr-par", "id":"2e6e848f-4370-4086-a447-9a8dad692a28", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.549610Z", + "updated_at":"2025-10-15T09:15:27.214343Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://0d6c443c-cf26-4099-be88-ec057c2083ea.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.0d6c443c-cf26-4099-be88-ec057c2083ea.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://2e6e848f-4370-4086-a447-9a8dad692a28.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.2e6e848f-4370-4086-a447-9a8dad692a28.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"a5d4f7ab-8318-4fcd-bb86-cd228d11ed1d", - "commitment_ends_at":"2025-10-10T10:23:02.199943Z", "acl_available":true, "iam_nodes_group_id":"2172b61c-799e-4a5d-abba-648e47e3a5a1", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"2fee0123-ce42-4e20-abd3-0a48b764cdd6", + "commitment_ends_at":"2025-10-15T09:11:58.549619Z", "acl_available":true, "iam_nodes_group_id":"06b5c6cb-06d4-4b2d-85e9-856bd00308b1", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1570" + - "1569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:14 GMT + - Wed, 15 Oct 2025 09:15:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,20 +3093,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a64a88aa-88db-4f34-acbb-b7003648f8a7 + - 7a93ec19-5fcb-4f75-95e2-5fa9e9040375 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d6c443c-cf26-4099-be88-ec057c2083ea","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2e6e848f-4370-4086-a447-9a8dad692a28","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d6c443c-cf26-4099-be88-ec057c2083ea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2e6e848f-4370-4086-a447-9a8dad692a28 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d6c443c-cf26-4099-be88-ec057c2083ea","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2e6e848f-4370-4086-a447-9a8dad692a28","type":"not_found"}' headers: Content-Length: - "128" @@ -2123,9 +3115,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:19 GMT + - Wed, 15 Oct 2025 09:15:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2133,7 +3125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bea10787-cc6a-43a4-ba6a-9f4da3a83aac + - 47fbd02f-37b4-4b3b-bd50-0151b05f5e69 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-simple.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-simple.cassette.yaml index edd008b135..1a24589c65 100644 --- a/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-simple.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-install-kubeconfig-simple.cassette.yaml @@ -5,18 +5,18 @@ interactions: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -29,25 +29,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/cluster-types method: GET response: body: '{"cluster_types":[{"name":"kapsule", "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, "max_etcd_size":55000000}, - {"name":"kapsule-dedicated-4", "availability":"scarce", "max_nodes":250, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-8", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":8000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"kapsule-dedicated-16", - "availability":"available", "max_nodes":500, "commitment_delay":"2592000s", - "sla":99.5, "resiliency":"high_availability", "memory":16000000000, "dedicated":true, - "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud", - "availability":"available", "max_nodes":150, "commitment_delay":"0s", "sla":0, - "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, - "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"scarce", + {"name":"kapsule-dedicated-4", "availability":"available", "max_nodes":250, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-8", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":8000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"kapsule-dedicated-16", "availability":"available", "max_nodes":500, + "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", + "memory":16000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, + {"name":"multicloud", "availability":"available", "max_nodes":150, "commitment_delay":"0s", + "sla":0, "resiliency":"standard", "memory":4000000000, "dedicated":false, "audit_logs_supported":false, + "max_etcd_size":55000000}, {"name":"multicloud-dedicated-4", "availability":"available", "max_nodes":250, "commitment_delay":"2592000s", "sla":99.5, "resiliency":"high_availability", "memory":4000000000, "dedicated":true, "audit_logs_supported":true, "max_etcd_size":200000000}, {"name":"multicloud-dedicated-8", "availability":"available", "max_nodes":500, @@ -59,15 +59,15 @@ interactions: "total_count":8}' headers: Content-Length: - - "1979" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:00 GMT + - Wed, 15 Oct 2025 09:11:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbb9120b-a4b3-4b89-be8b-d720f0cfaddf + - 5817a10d-0df4-4ed0-8498-9377428a9deb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", "name":"pn-wonderful-lumiere", + body: '{"id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "name":"pn-priceless-jones", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.185014Z", "updated_at":"2025-10-10T10:23:01.185014Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c0608e33-724d-42cc-8480-772ddff16d16", - "created_at":"2025-10-10T10:23:01.185014Z", "updated_at":"2025-10-10T10:23:01.185014Z", - "subnet":"172.17.16.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"60a661ae-1d0f-48fb-8d55-8fe03e50f524", "created_at":"2025-10-10T10:23:01.185014Z", - "updated_at":"2025-10-10T10:23:01.185014Z", "subnet":"fd58:6b70:2d5a:95c3::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", + "created_at":"2025-10-15T09:11:57.648886Z", "updated_at":"2025-10-15T09:11:57.648886Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c3b2fa60-8841-44f8-8fd7-8245ef58f8d8", + "created_at":"2025-10-15T09:11:57.648886Z", "updated_at":"2025-10-15T09:11:57.648886Z", + "subnet":"172.17.76.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"63977ae6-4d13-4248-ad48-d013ee44a84c", "created_at":"2025-10-15T09:11:57.648886Z", + "updated_at":"2025-10-15T09:11:57.648886Z", "subnet":"fd58:6b70:2d5a:1f98::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -97,33 +97,33 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", "name":"pn-wonderful-lumiere", + body: '{"id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "name":"pn-priceless-jones", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-10T10:23:01.185014Z", "updated_at":"2025-10-10T10:23:01.185014Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c0608e33-724d-42cc-8480-772ddff16d16", - "created_at":"2025-10-10T10:23:01.185014Z", "updated_at":"2025-10-10T10:23:01.185014Z", - "subnet":"172.17.16.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"60a661ae-1d0f-48fb-8d55-8fe03e50f524", "created_at":"2025-10-10T10:23:01.185014Z", - "updated_at":"2025-10-10T10:23:01.185014Z", "subnet":"fd58:6b70:2d5a:95c3::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", + "created_at":"2025-10-15T09:11:57.648886Z", "updated_at":"2025-10-15T09:11:57.648886Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"c3b2fa60-8841-44f8-8fd7-8245ef58f8d8", + "created_at":"2025-10-15T09:11:57.648886Z", "updated_at":"2025-10-15T09:11:57.648886Z", + "subnet":"172.17.76.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"63977ae6-4d13-4248-ad48-d013ee44a84c", "created_at":"2025-10-15T09:11:57.648886Z", + "updated_at":"2025-10-15T09:11:57.648886Z", "subnet":"fd58:6b70:2d5a:1f98::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1140" + - "1138" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:01 GMT + - Wed, 15 Oct 2025 09:11:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,26 +131,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2922a9d4-9d03-406d-badc-a45c4f964eca + - e81b986b-1b24-4f64-859c-4f90d6d2ac56 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.203194Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.430727Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -158,38 +158,1216 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.203194Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.430727Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1571" + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:11:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2ad77ae-a408-4077-9b69-3224c38010e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.430727Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.430727Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:11:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b0a1be1-9281-47d5-a578-09e9c9288b3e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 27ea5c62-2801-4b0d-8d35-5625add48551 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1416421b-1f46-41ee-a0e2-579898876328 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4317bd25-e1c2-4bc7-85b0-6b86317d5362 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edc8ba69-74e6-40a0-81b4-bfe7e263a677 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c696841a-db41-400a-94f1-966cb75cc615 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98c987a5-66b0-4511-805e-e11fa2d70559 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3e4cb82-17c6-4204-ba39-fa601a16a351 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 426420a5-b2c6-48b3-b610-dcc700aac866 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 714eae15-1b5c-4e36-a7cb-b6963e2c3827 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df4421bb-1966-4177-887d-281e985ec491 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f225e4f-936c-4508-93c4-f716d4219686 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:12:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d797507-5b3c-46f7-bf44-77b39395f241 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d33a2841-2099-4037-8640-7992c8106c0d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 876cc989-948a-4e52-ba71-4afbd7c0651e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ea0cd7d-55c8-4063-b12d-2841163b580c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 957dd7ea-5a83-4fbe-9e95-44c5383b926b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 09:13:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba703115-e835-4dab-8763-03f9bd423122 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c + method: GET + response: + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + headers: + Content-Length: + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:13:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,61 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59814232-caab-4c4d-8d08-8024e1d22832 + - 80b9cb52-1515-4192-97fd-e3ab05d7787e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.203194Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.203194Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1535" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:02 GMT + - Wed, 15 Oct 2025 09:13:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,61 +1437,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 857eba6a-3121-4a2e-979c-8548d13c42ba + - 70abfca5-a7f7-4bfa-aa7e-b4857e7ed144 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:07 GMT + - Wed, 15 Oct 2025 09:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,61 +1499,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc8d6f45-e590-4526-93c7-2a0309ddb4b6 + - 822c881f-b9ee-46b7-b28b-2218d38aad90 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:12 GMT + - Wed, 15 Oct 2025 09:13:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,61 +1561,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 166e07bc-d04e-4823-9e4e-f26391f0bdcf + - c7ac2ad2-7fd5-41a5-9e4f-e2940ac2385e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:17 GMT + - Wed, 15 Oct 2025 09:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,61 +1623,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a686d6-ea0e-4880-b6cc-6b3812b31b30 + - 71f6691c-bc2f-4ce0-86fa-85746b1d15b7 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:22 GMT + - Wed, 15 Oct 2025 09:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,61 +1685,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b74328-75f8-43df-b10c-95477c1650dc + - 91abaf15-c0ff-44c3-bdca-69ecdac46038 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:27 GMT + - Wed, 15 Oct 2025 09:14:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,61 +1747,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63f1cf57-b3a3-436d-a552-1445c0d18811 + - 79adf879-d446-4d32-af67-f6f094f5ca73 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:32 GMT + - Wed, 15 Oct 2025 09:14:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,61 +1809,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04fd49ef-7829-4b21-8e92-fcac396f97a8 + - 498f7f0e-a360-4f13-9ffd-ae3e6d91e184 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:37 GMT + - Wed, 15 Oct 2025 09:14:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,61 +1871,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40d40252-5194-4595-8cfb-1f9c96765e60 + - 28f25c0a-0b05-42b4-b4e3-57e2f19e1059 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:42 GMT + - Wed, 15 Oct 2025 09:14:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,61 +1933,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b0a37a-6cd6-41a2-b89f-9c48827c5cd8 + - 072efa42-6b99-4bd3-a665-0d15b4d22291 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:47 GMT + - Wed, 15 Oct 2025 09:14:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,61 +1995,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d46330a8-95d3-4f11-b9a6-bb411fef2a1c + - 50b57526-706a-49c2-94dd-781e980f38c9 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:52 GMT + - Wed, 15 Oct 2025 09:14:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,61 +2057,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a9ed72-67d3-48fe-86d2-1a0f5d562cc5 + - dc155303-26cc-4270-8039-cdb17634c494 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:23:58 GMT + - Wed, 15 Oct 2025 09:14:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,61 +2119,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21b6558-5d8e-4e22-909f-4f8efa92a689 + - 2bc3f25a-98b9-4293-a57c-ddb900922517 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:03 GMT + - Wed, 15 Oct 2025 09:14:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,61 +2181,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccfde316-133f-48d7-8e4a-aecd2451d3c8 + - 7b90429b-37ce-4407-8ad9-4104159e02f5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:08 GMT + - Wed, 15 Oct 2025 09:14:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,61 +2243,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92fe763d-b4bc-45c3-bc2c-17fd032a714d + - 00f763f3-395e-4633-8461-cfa1fccc3013 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:13 GMT + - Wed, 15 Oct 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,61 +2305,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 661d91c4-a667-4caf-99d9-f65d9005eb3e + - 261ad50e-d0e5-4a4b-a503-6f78038edd78 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:18 GMT + - Wed, 15 Oct 2025 09:14:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,61 +2367,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f583401-39f6-4adb-8e20-93b65b6c24f3 + - 83814532-9f35-44e6-9c40-9a01305cec6b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:23 GMT + - Wed, 15 Oct 2025 09:14:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,61 +2429,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0104e778-f0c4-4a7f-bef5-a15b3c4e1a91 + - 19135f15-bcbd-479e-9564-829a5e64a625 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:28 GMT + - Wed, 15 Oct 2025 09:15:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,61 +2491,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a1714c3-4430-4685-a7d5-36c78d4977f2 + - decd708b-1c3b-4c63-be87-3c36537b3aaa status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:33 GMT + - Wed, 15 Oct 2025 09:15:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,61 +2553,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65a9b4ed-1679-4656-a1a4-cfdb104b76da + - a41e1c14-0a50-48aa-958e-1daa60ce74b5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:38 GMT + - Wed, 15 Oct 2025 09:15:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,61 +2615,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8989f72-ce10-445e-9671-7f51224a3396 + - 4d07a54c-5ded-4ae2-a112-bd477b568b47 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:43 GMT + - Wed, 15 Oct 2025 09:15:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,61 +2677,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e054140-3dfc-4f70-81eb-28b4ab327b66 + - 4ee32563-acaf-494c-a195-5ae87c61b9c8 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:23:02.715455Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:11:58.994957Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:48 GMT + - Wed, 15 Oct 2025 09:15:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,61 +2739,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6bdea61-206d-4323-8950-b8a94dcb9a6b + - 00a2c6e1-c209-455a-b406-d76399a77fa6 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:50.598872Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:23.965141Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:50.598872Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:23.965141Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1568" + - "1567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:53 GMT + - Wed, 15 Oct 2025 09:15:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,7 +2801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ca7c05-2af8-497f-8be4-1880326c99b6 + - 45adb69c-d9b6-4ef8-9377-d42c257fad9e status: 200 OK code: 200 duration: "" @@ -1636,7 +2814,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 method: GET response: @@ -1653,9 +2831,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:53 GMT + - Wed, 15 Oct 2025 09:15:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1663,31 +2841,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2924651-e6d1-4d86-ab59-627d0184f084 + - 0b5a9d02-db7d-4111-b319-6bdc8a37eca2 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlVUlhkTmFrMTNUV3h2V0VSVVRURk5WRUYzVDFSRmQwMXFUWGROYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTa3RTWW0xNWVsTmhWV3cyWTJORENrRjFLMmhQUVZCb2FITmxhbTF3Y21JdmFFVktNMEpZV2xsVlFrWTNWM0ZaWlRsalMwMVNjVkJTYmtjNU4xcHpSekExUlhaM1YzTjVWM2hQVTA4emMzZ0tSRXBsZGt0UEsycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJVa1IwV1RNNFR6TkZhVWwwZVU1VWFURlZWWGx2T1RocFVteFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnlTV0kxQ205TFIxaFZkRTFXU1V0UFVXVnJNMVV6Tkd0aWRHSnNOalE0VTJKa1NYZHJOVWxyWTFGaFZVTkpSVEprY1hoVFdUVkhia2hqT0VGNWIxUkJiVEU1VFhNS1NscFZUelpxVFZWT2FrZHpURGhsWVVjclkzZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9lZWEwMjUwMC1kY2E0LTQzM2EtOGJjOS05ZTZhNWMxOTlmMTMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaHp0RThxMWhjdXZkQUt6M0Q4enRqdXl5V0RrMVVyYnk3QzJ2V1QxSTk3aUZGZkhZTnpPQjZCcng="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUVRWTlZFVXhUMFp2V0VSVVRURk5WRUY0VGtSQk5VMVVSVEZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTVXBWWjNGSFRtcHRTVzUwUXpnd0NrdE5hWFZIVmxoTVlubEliVVV4V1hCVVpWaFdNVzF1WWtwWlJsQnVNbkJFV1hKR0t5OW1TWFl5VURGQldtTkZVV3BJVUhsaFVYTjFVMnBYY1dsbVlsRUtSR0poVTBvd1UycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNVVkZGTjFoRVYzZGhNVzUxVTJGWU4wdEljM1o0YURsM1lsZEVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFWcHJjRGwxQ2tJd1IxVnNOamxMZVdkaGMxWkRXVWhqWlRoWldXYzVTVUZwVEZBNGFtWldabE5wTTFsblNXaEJURXcxTW1vd1luRjRPRVZMVGtkSE5YWXJTVEoxTWpRS1pUZHRNazEzVTBoTWNDOVlablJKU2s1NmRGZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jOWY3MzczMi1iM2JiLTRkZTAtYTA3Ny0wMTIyMjBmNTBmMWMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlVUlhkTmFrMTNUV3h2V0VSVVRURk5WRUYzVDFSRmQwMXFUWGROYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTa3RTWW0xNWVsTmhWV3cyWTJORENrRjFLMmhQUVZCb2FITmxhbTF3Y21JdmFFVktNMEpZV2xsVlFrWTNWM0ZaWlRsalMwMVNjVkJTYmtjNU4xcHpSekExUlhaM1YzTjVWM2hQVTA4emMzZ0tSRXBsZGt0UEsycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJVa1IwV1RNNFR6TkZhVWwwZVU1VWFURlZWWGx2T1RocFVteFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnlTV0kxQ205TFIxaFZkRTFXU1V0UFVXVnJNMVV6Tkd0aWRHSnNOalE0VTJKa1NYZHJOVWxyWTFGaFZVTkpSVEprY1hoVFdUVkhia2hqT0VGNWIxUkJiVEU1VFhNS1NscFZUelpxVFZWT2FrZHpURGhsWVVjclkzZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9lZWEwMjUwMC1kY2E0LTQzM2EtOGJjOS05ZTZhNWMxOTlmMTMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaHp0RThxMWhjdXZkQUt6M0Q4enRqdXl5V0RrMVVyYnk3QzJ2V1QxSTk3aUZGZkhZTnpPQjZCcng="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUVRWTlZFVXhUMFp2V0VSVVRURk5WRUY0VGtSQk5VMVVSVEZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTVXBWWjNGSFRtcHRTVzUwUXpnd0NrdE5hWFZIVmxoTVlubEliVVV4V1hCVVpWaFdNVzF1WWtwWlJsQnVNbkJFV1hKR0t5OW1TWFl5VURGQldtTkZVV3BJVUhsaFVYTjFVMnBYY1dsbVlsRUtSR0poVTBvd1UycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNVVkZGTjFoRVYzZGhNVzUxVTJGWU4wdEljM1o0YURsM1lsZEVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFWcHJjRGwxQ2tJd1IxVnNOamxMZVdkaGMxWkRXVWhqWlRoWldXYzVTVUZwVEZBNGFtWldabE5wTTFsblNXaEJURXcxTW1vd1luRjRPRVZMVGtkSE5YWXJTVEoxTWpRS1pUZHRNazEzVTBoTWNDOVlablJKU2s1NmRGZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jOWY3MzczMi1iM2JiLTRkZTAtYTA3Ny0wMTIyMjBmNTBmMWMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1810" + - "1754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:53 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,31 +2873,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e71f5a-1a6c-43e2-9da4-328196d626d5 + - 347c9fc5-a4ac-40e6-a8be-99766f170c8f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlVUlhkTmFrMTNUV3h2V0VSVVRURk5WRUYzVDFSRmQwMXFUWGROYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTa3RTWW0xNWVsTmhWV3cyWTJORENrRjFLMmhQUVZCb2FITmxhbTF3Y21JdmFFVktNMEpZV2xsVlFrWTNWM0ZaWlRsalMwMVNjVkJTYmtjNU4xcHpSekExUlhaM1YzTjVWM2hQVTA4emMzZ0tSRXBsZGt0UEsycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJVa1IwV1RNNFR6TkZhVWwwZVU1VWFURlZWWGx2T1RocFVteFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnlTV0kxQ205TFIxaFZkRTFXU1V0UFVXVnJNMVV6Tkd0aWRHSnNOalE0VTJKa1NYZHJOVWxyWTFGaFZVTkpSVEprY1hoVFdUVkhia2hqT0VGNWIxUkJiVEU1VFhNS1NscFZUelpxVFZWT2FrZHpURGhsWVVjclkzZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9lZWEwMjUwMC1kY2E0LTQzM2EtOGJjOS05ZTZhNWMxOTlmMTMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaHp0RThxMWhjdXZkQUt6M0Q4enRqdXl5V0RrMVVyYnk3QzJ2V1QxSTk3aUZGZkhZTnpPQjZCcng="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUVRWTlZFVXhUMFp2V0VSVVRURk5WRUY0VGtSQk5VMVVSVEZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTVXBWWjNGSFRtcHRTVzUwUXpnd0NrdE5hWFZIVmxoTVlubEliVVV4V1hCVVpWaFdNVzF1WWtwWlJsQnVNbkJFV1hKR0t5OW1TWFl5VURGQldtTkZVV3BJVUhsaFVYTjFVMnBYY1dsbVlsRUtSR0poVTBvd1UycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNVVkZGTjFoRVYzZGhNVzUxVTJGWU4wdEljM1o0YURsM1lsZEVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFWcHJjRGwxQ2tJd1IxVnNOamxMZVdkaGMxWkRXVWhqWlRoWldXYzVTVUZwVEZBNGFtWldabE5wTTFsblNXaEJURXcxTW1vd1luRjRPRVZMVGtkSE5YWXJTVEoxTWpRS1pUZHRNazEzVTBoTWNDOVlablJKU2s1NmRGZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jOWY3MzczMi1iM2JiLTRkZTAtYTA3Ny0wMTIyMjBmNTBmMWMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13/kubeconfig + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJkMDlVUlhkTmFrMTNUV3h2V0VSVVRURk5WRUYzVDFSRmQwMXFUWGROYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTa3RTWW0xNWVsTmhWV3cyWTJORENrRjFLMmhQUVZCb2FITmxhbTF3Y21JdmFFVktNMEpZV2xsVlFrWTNWM0ZaWlRsalMwMVNjVkJTYmtjNU4xcHpSekExUlhaM1YzTjVWM2hQVTA4emMzZ0tSRXBsZGt0UEsycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlJVa1IwV1RNNFR6TkZhVWwwZVU1VWFURlZWWGx2T1RocFVteFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRnlTV0kxQ205TFIxaFZkRTFXU1V0UFVXVnJNMVV6Tkd0aWRHSnNOalE0VTJKa1NYZHJOVWxyWTFGaFZVTkpSVEprY1hoVFdUVkhia2hqT0VGNWIxUkJiVEU1VFhNS1NscFZUelpxVFZWT2FrZHpURGhsWVVjclkzZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9lZWEwMjUwMC1kY2E0LTQzM2EtOGJjOS05ZTZhNWMxOTlmMTMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaHp0RThxMWhjdXZkQUt6M0Q4enRqdXl5V0RrMVVyYnk3QzJ2V1QxSTk3aUZGZkhZTnpPQjZCcng="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlRTVFUVRWTlZFVXhUMFp2V0VSVVRURk5WRUY0VGtSQk5VMVVSVEZQUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTVXBWWjNGSFRtcHRTVzUwUXpnd0NrdE5hWFZIVmxoTVlubEliVVV4V1hCVVpWaFdNVzF1WWtwWlJsQnVNbkJFV1hKR0t5OW1TWFl5VURGQldtTkZVV3BJVUhsaFVYTjFVMnBYY1dsbVlsRUtSR0poVTBvd1UycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlNVVkZGTjFoRVYzZGhNVzUxVTJGWU4wdEljM1o0YURsM1lsZEVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFWcHJjRGwxQ2tJd1IxVnNOamxMZVdkaGMxWkRXVWhqWlRoWldXYzVTVUZwVEZBNGFtWldabE5wTTFsblNXaEJURXcxTW1vd1luRjRPRVZMVGtkSE5YWXJTVEoxTWpRS1pUZHRNazEzVTBoTWNDOVlablJKU2s1NmRGZ0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jOWY3MzczMi1iM2JiLTRkZTAtYTA3Ny0wMTIyMjBmNTBmMWMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZSIKICAgIHVzZXI6IGNsaS10ZXN0LWluc3RhbGwta3ViZWNvbmZpZy1zaW1wbGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbGktdGVzdC1pbnN0YWxsLWt1YmVjb25maWctc2ltcGxlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2xpLXRlc3QtaW5zdGFsbC1rdWJlY29uZmlnLXNpbXBsZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1810" + - "1754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:53 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1727,63 +2905,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98521be3-5a4b-462f-b674-d4930385d0e3 + - 5c98c35f-a57f-4cb8-b470-fdb472a2e951 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13?with_additional_resources=true + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c?with_additional_resources=true method: DELETE response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1607" + - "1606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:54 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,61 +2969,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92138b85-d5a4-4538-bf75-e34654788df2 + - cb4ee2c2-f4ad-4303-9de7-fbb440fe0302 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:54 GMT + - Wed, 15 Oct 2025 09:15:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1853,61 +3031,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bd6a4a7-b884-4932-9f6b-765fbacd6fea + - 47b3ba1b-84d0-4a9b-ada2-3beed05dfcda status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"region":"fr-par", "id":"eea02500-dca4-433a-8bc9-9e6a5c199f13", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-10T10:23:02.203194Z", - "updated_at":"2025-10-10T10:24:53.972300Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", + body: '{"region":"fr-par", "id":"c9f73732-b3bb-4de0-a077-012220f50f1c", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:11:58.430727Z", + "updated_at":"2025-10-15T09:15:27.209409Z", "type":"kapsule", "name":"cli-test-install-kubeconfig-simple", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://eea02500-dca4-433a-8bc9-9e6a5c199f13.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.eea02500-dca4-433a-8bc9-9e6a5c199f13.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://c9f73732-b3bb-4de0-a077-012220f50f1c.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.c9f73732-b3bb-4de0-a077-012220f50f1c.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"866faf83-7ac5-4f65-94cf-ec63d89b5468", - "commitment_ends_at":"2025-10-10T10:23:02.203203Z", "acl_available":true, "iam_nodes_group_id":"fe2f4114-09b2-43b8-a23b-e0c2c34cff3a", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"5788fce7-3746-49c4-b327-30d35dcba8f9", + "commitment_ends_at":"2025-10-15T09:11:58.430734Z", "acl_available":true, "iam_nodes_group_id":"8e8b39d1-26bf-420b-8a7f-f03ce64357cd", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1571" + - "1570" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:24:59 GMT + - Wed, 15 Oct 2025 09:15:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1915,20 +3093,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5760012-9b56-48b9-8fa9-5ee6aa78efd9 + - 9085ebc8-6fb9-4313-bf9a-3815bc058ded status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"eea02500-dca4-433a-8bc9-9e6a5c199f13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c9f73732-b3bb-4de0-a077-012220f50f1c","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.6; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/eea02500-dca4-433a-8bc9-9e6a5c199f13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9f73732-b3bb-4de0-a077-012220f50f1c method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"eea02500-dca4-433a-8bc9-9e6a5c199f13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c9f73732-b3bb-4de0-a077-012220f50f1c","type":"not_found"}' headers: Content-Length: - "128" @@ -1937,9 +3115,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 10 Oct 2025 10:25:04 GMT + - Wed, 15 Oct 2025 09:15:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1947,7 +3125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6565f6d-43b5-4523-b597-8f3ec5e1c0b5 + - 05ba8328-9ca4-4028-a216-b37d717fb2ae status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/k8s/v1/testdata/test-uninstall-kubeconfig-uninstall-real-merge.cassette.yaml b/internal/namespaces/k8s/v1/testdata/test-uninstall-kubeconfig-uninstall-real-merge.cassette.yaml index 22219a04c0..cb9d3659f3 100644 --- a/internal/namespaces/k8s/v1/testdata/test-uninstall-kubeconfig-uninstall-real-merge.cassette.yaml +++ b/internal/namespaces/k8s/v1/testdata/test-uninstall-kubeconfig-uninstall-real-merge.cassette.yaml @@ -65,9 +65,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:33 GMT + - Wed, 15 Oct 2025 09:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -75,21 +75,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebd87686-3bb7-4576-b6f4-792d3beabda4 + - d1b948ef-345b-4953-829c-d4c289419236 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", "name":"pn-distracted-poincare", + body: '{"id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "name":"pn-ecstatic-burnell", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-13T13:29:33.669173Z", "updated_at":"2025-10-13T13:29:33.669173Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"11220e4c-d95c-40dd-9720-5725a1250c8f", - "created_at":"2025-10-13T13:29:33.669173Z", "updated_at":"2025-10-13T13:29:33.669173Z", + "created_at":"2025-10-15T09:04:27.495823Z", "updated_at":"2025-10-15T09:04:27.495823Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"50451143-5ae1-436a-b4e7-1fe6379bbdfd", + "created_at":"2025-10-15T09:04:27.495823Z", "updated_at":"2025-10-15T09:04:27.495823Z", "subnet":"172.17.60.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"bad9e889-f0bd-4036-a227-56728cbbd733", "created_at":"2025-10-13T13:29:33.669173Z", - "updated_at":"2025-10-13T13:29:33.669173Z", "subnet":"fd58:6b70:2d5a:d6ce::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", + "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"41d4b8b2-4d50-458a-beab-20d89b65b0ad", "created_at":"2025-10-15T09:04:27.495823Z", + "updated_at":"2025-10-15T09:04:27.495823Z", "subnet":"fd58:6b70:2d5a:a83c::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' form: {} @@ -101,29 +101,29 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", "name":"pn-distracted-poincare", + body: '{"id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "name":"pn-ecstatic-burnell", "tags":["created-along-with-k8s-cluster", "created-by-cli"], "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "created_at":"2025-10-13T13:29:33.669173Z", "updated_at":"2025-10-13T13:29:33.669173Z", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"11220e4c-d95c-40dd-9720-5725a1250c8f", - "created_at":"2025-10-13T13:29:33.669173Z", "updated_at":"2025-10-13T13:29:33.669173Z", + "created_at":"2025-10-15T09:04:27.495823Z", "updated_at":"2025-10-15T09:04:27.495823Z", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "subnets":[{"id":"50451143-5ae1-436a-b4e7-1fe6379bbdfd", + "created_at":"2025-10-15T09:04:27.495823Z", "updated_at":"2025-10-15T09:04:27.495823Z", "subnet":"172.17.60.0/22", "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, - {"id":"bad9e889-f0bd-4036-a227-56728cbbd733", "created_at":"2025-10-13T13:29:33.669173Z", - "updated_at":"2025-10-13T13:29:33.669173Z", "subnet":"fd58:6b70:2d5a:d6ce::/64", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", + "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}, + {"id":"41d4b8b2-4d50-458a-beab-20d89b65b0ad", "created_at":"2025-10-15T09:04:27.495823Z", + "updated_at":"2025-10-15T09:04:27.495823Z", "subnet":"fd58:6b70:2d5a:a83c::/64", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20"}], "vpc_id":"b730047a-278a-4bbf-8092-ac2ae2bbef20", "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' headers: Content-Length: - - "1142" + - "1139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:34 GMT + - Wed, 15 Oct 2025 09:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,17 +131,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fa5b14e-ac4e-40d9-a3dd-81f33e202cd3 + - e2461003-1649-4824-8a1d-cea231306d8d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:34.721190Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.432186Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -149,8 +149,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' form: {} @@ -162,12 +162,12 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:34.721190Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.432186Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -175,8 +175,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", "service_dns_ip":"10.32.0.10"}' headers: @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:34 GMT + - Wed, 15 Oct 2025 09:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,17 +197,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7573cb2e-835c-4513-b219-f5a3b95ceeb2 + - ae41960f-a5b2-4f48-91f2-07425f668a43 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:34.721190Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.432186Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -215,22 +215,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:34.721190Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.432186Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -238,8 +238,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -249,9 +249,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:34 GMT + - Wed, 15 Oct 2025 09:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -259,17 +259,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e23c333d-6771-4cb3-9877-c1f7a7e2edff + - 2628507c-ec54-45cf-b7fc-b7d8dc716bb4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -277,22 +277,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -300,8 +300,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -311,9 +311,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:39 GMT + - Wed, 15 Oct 2025 09:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,17 +321,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90c11039-675d-408d-90e7-52358a695b63 + - 1e87dd03-a933-47e3-aee6-52bee97da0c1 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -339,22 +339,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -362,8 +362,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -373,9 +373,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:44 GMT + - Wed, 15 Oct 2025 09:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,17 +383,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77073dc5-604a-4e5a-9044-cbac7b7dab05 + - 940aedc2-a1d1-484b-9406-6df6c721a316 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -401,22 +401,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -424,8 +424,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -435,9 +435,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:50 GMT + - Wed, 15 Oct 2025 09:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -445,17 +445,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78e3619a-f53a-4cf3-8c36-75e5c9469128 + - f1ac6ff6-ffb4-422d-af11-5617ca1083c4 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -463,22 +463,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -486,8 +486,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -497,9 +497,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:29:55 GMT + - Wed, 15 Oct 2025 09:04:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,17 +507,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 266b34d9-0e2f-4d53-ab58-ba8bc1d8875e + - 03a84244-5706-46c4-8009-ce275377af24 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -525,22 +525,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -548,8 +548,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -559,9 +559,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:00 GMT + - Wed, 15 Oct 2025 09:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -569,17 +569,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a7f8ed-6004-4cb9-b626-15e5aad8448a + - 21022564-c942-4a9e-8ec2-1a0f2b8d1169 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -587,22 +587,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -610,8 +610,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -621,9 +621,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:05 GMT + - Wed, 15 Oct 2025 09:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -631,17 +631,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7568fd9-7289-44ab-a0a7-aefc328e2c81 + - 36fb050f-5d0f-4c12-b774-a8ef49404d0a status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -649,22 +649,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -672,8 +672,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -683,9 +683,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:10 GMT + - Wed, 15 Oct 2025 09:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,17 +693,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c31c24b-1d5d-43d9-b663-3d6b91bb1cd5 + - 10305be6-09c3-41c9-9683-58c1d0423d33 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -711,22 +711,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -734,8 +734,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -745,9 +745,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:15 GMT + - Wed, 15 Oct 2025 09:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,17 +755,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd54376-72c7-43e3-8002-e13f4c7a18a0 + - 748c4280-bee4-4c26-9639-4edeab14470e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -773,22 +773,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -796,8 +796,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -807,9 +807,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:20 GMT + - Wed, 15 Oct 2025 09:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,17 +817,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9e4fbab-1610-425d-bef7-3b38d3b2aeac + - c9f20bac-4d1f-4ff9-b907-2fda2ce3e8bf status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -835,22 +835,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -858,8 +858,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -869,9 +869,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:25 GMT + - Wed, 15 Oct 2025 09:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,17 +879,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b32b38f8-20aa-47ce-bbed-9f53ba287dad + - c9faff8e-7178-4242-aa32-7241f7e9c80d status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -897,22 +897,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -920,8 +920,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -931,9 +931,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:30 GMT + - Wed, 15 Oct 2025 09:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,17 +941,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0bc192-9d7e-4323-b319-a597547a281c + - 58e627d7-b54d-4d80-9a26-004affa13dde status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -959,22 +959,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -982,8 +982,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -993,9 +993,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:35 GMT + - Wed, 15 Oct 2025 09:05:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,17 +1003,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 951e298f-6a89-45b1-8e24-027913267267 + - 01c86360-8a78-4d99-af96-535db247a1b5 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1021,22 +1021,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1044,8 +1044,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1055,9 +1055,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:40 GMT + - Wed, 15 Oct 2025 09:05:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1065,17 +1065,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83f8c29b-3c09-460c-9bda-bc37c623e842 + - 5aa0dc44-2039-44f8-91f9-d7af6b41258b status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1083,22 +1083,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1106,8 +1106,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1117,9 +1117,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:45 GMT + - Wed, 15 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,17 +1127,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e4b6627-ac66-4e31-8287-56fbe7cf8bb7 + - b7e99c6e-d5ea-49bb-a073-87e2ce06090e status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1145,22 +1145,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1168,8 +1168,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1179,9 +1179,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:51 GMT + - Wed, 15 Oct 2025 09:05:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,17 +1189,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0684ab50-0adc-49c6-8f8f-ff44fca5e333 + - ebc18e46-2928-4671-82c8-ba479015ba20 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1207,22 +1207,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1230,8 +1230,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1241,9 +1241,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:30:56 GMT + - Wed, 15 Oct 2025 09:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,17 +1251,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e8c7c32-0ccc-4b94-b68f-8b597796c344 + - 063c568f-0a34-4338-a08a-7822b963eec2 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1269,22 +1269,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:29:35.229542Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1292,8 +1292,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1303,9 +1303,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:01 GMT + - Wed, 15 Oct 2025 09:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,17 +1313,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f895177-9169-4100-99ca-cd7f76c8323f + - 42d8a297-d669-46fd-b16d-3b9b7fad7705 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:02.224564Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", - "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1331,22 +1331,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:02.224564Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", - "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:04:28.965088Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + "description":"", "status":"creating", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1354,20 +1354,20 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "1568" + - "1571" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:05:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,39 +1375,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd3ed94e-fdf8-4378-bfe9-d2721a97835a + - 86b75c51-cdbc-45b1-8d64-37dcd0c20c45 status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:00.042618Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland - regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", - "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:00.042618Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + "description":"", "status":"ready", "version":"1.32.3", "cni":"cilium", "tags":[], + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", + "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", + "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, + "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, + "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, + "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, + "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", + "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", + "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: - - "398" + - "1568" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1415,31 +1437,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81181c29-b228-4e6a-a378-633a5e708514 + - faee810f-9cf2-43b7-a89b-931aa27dfade status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUUxcVJYcE5hbXQ2VGtadldFUlVUVEZOVkVGNFRXcEZlazFxYTNwT1JtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWs5RWVVaHdZbk15VEVsS1ozRnRDbkV5WjFvMWRWUkJZVlZpYW5WalYzbDJNRGxwTDNoTmFURkRjRVpETDJsdmMwdGhMMVpSWjJKd1FuWkJaV051WWpGd2VVVldVazB2YUc1a2FYZGlXaklLU1c0MWFrNHlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYmtoeFMwbEhObGQ2UjFkdFVVaHlWa00wYTBwRlIzRkJSa3BxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbFF4VURSakNqVnhNRFkyYjJwU2JUVnljSFZKVjNWaVZHSkJMMjFUTHpsMlFVbzRLMFV2TWxOellXcG5TV2RPYVVOblJGTTBZVEk1V0ZORlJuQmxjVVkxVEdJemQyUUtUM0ZyZUhCUU1XSjZSWEJ3YkRSWU9FWlVNRDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjFlZThjMDctYTY5MC00MGM4LThlYTItYjQ5MDAyZWIxZDhlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdVdRUUVwcDNLMTZvSG5uYkZHeERLQzRJQTVsSUN1OVRoWE1kN0RJNjZyNmxqMk1ad3cxVThpSms="}' + body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland + regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", + "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e/kubeconfig + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTSXK0WE3GRJDR3W35 method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUUxcVJYcE5hbXQ2VGtadldFUlVUVEZOVkVGNFRXcEZlazFxYTNwT1JtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWs5RWVVaHdZbk15VEVsS1ozRnRDbkV5WjFvMWRWUkJZVlZpYW5WalYzbDJNRGxwTDNoTmFURkRjRVpETDJsdmMwdGhMMVpSWjJKd1FuWkJaV051WWpGd2VVVldVazB2YUc1a2FYZGlXaklLU1c0MWFrNHlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYmtoeFMwbEhObGQ2UjFkdFVVaHlWa00wYTBwRlIzRkJSa3BxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbFF4VURSakNqVnhNRFkyYjJwU2JUVnljSFZKVjNWaVZHSkJMMjFUTHpsMlFVbzRLMFV2TWxOellXcG5TV2RPYVVOblJGTTBZVEk1V0ZORlJuQmxjVVkxVEdJemQyUUtUM0ZyZUhCUU1XSjZSWEJ3YkRSWU9FWlVNRDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjFlZThjMDctYTY5MC00MGM4LThlYTItYjQ5MDAyZWIxZDhlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdVdRUUVwcDNLMTZvSG5uYkZHeERLQzRJQTVsSUN1OVRoWE1kN0RJNjZyNmxqMk1ad3cxVThpSms="}' + body: '{"access_key":"SCWTSXK0WE3GRJDR3W35", "secret_key":null, "description":"goland + regen casettes cli", "created_at":"2024-08-30T13:28:32.818239Z", "updated_at":"2024-08-30T13:28:32.818239Z", + "expires_at":null, "default_project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"063ace2e-0340-4c01-a29a-e7f985d6d9f3"}' headers: Content-Length: - - "1818" + - "398" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1447,31 +1477,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b9727cf-286d-4b9c-8851-d6af6b70f57d + - 98c5f209-a06a-4375-bd27-09dc36a1e342 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUUxcVJYcE5hbXQ2VGtadldFUlVUVEZOVkVGNFRXcEZlazFxYTNwT1JtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWs5RWVVaHdZbk15VEVsS1ozRnRDbkV5WjFvMWRWUkJZVlZpYW5WalYzbDJNRGxwTDNoTmFURkRjRVpETDJsdmMwdGhMMVpSWjJKd1FuWkJaV051WWpGd2VVVldVazB2YUc1a2FYZGlXaklLU1c0MWFrNHlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYmtoeFMwbEhObGQ2UjFkdFVVaHlWa00wYTBwRlIzRkJSa3BxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbFF4VURSakNqVnhNRFkyYjJwU2JUVnljSFZKVjNWaVZHSkJMMjFUTHpsMlFVbzRLMFV2TWxOellXcG5TV2RPYVVOblJGTTBZVEk1V0ZORlJuQmxjVVkxVEdJemQyUUtUM0ZyZUhCUU1XSjZSWEJ3YkRSWU9FWlVNRDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjFlZThjMDctYTY5MC00MGM4LThlYTItYjQ5MDAyZWIxZDhlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdVdRUUVwcDNLMTZvSG5uYkZHeERLQzRJQTVsSUN1OVRoWE1kN0RJNjZyNmxqMk1ad3cxVThpSms="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5SRkY1VDBadldFUlVUVEZOVkVGNFRrUkJOVTFFVVhsUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUzBWSVFTdFdOMk0xUkdaUk1Fc3pDbkJ5VW0xTlpuRjZZa0Z0VUd4RFJWSlFSekJ0YUhOaGQxWTJjVFZXTm5WdGIxVTJkV3c1TTAxM2IxaFJiSE42TlZWRVNtSlpRMUV2V2s5S2FIRnpibkFLTUU5R2EweHNSMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYWtKNE1sSllNM1F5UVdSbFdYQXdlbmhwTUVKd09XNVlWMEpFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbkZRWlRFMENuaHlSV1k1ZUUxaldsSjJURzE1WkdaVmExSmFTWGxZVm5WSWVpdFJUVlJFWjI5M0x5dDNTV2RrZW5wWWRtSmhWbGg1Y0ZwM2RrUnhRbGh4YTNKWFluUUtkbnBTZVM5UFVtTjVhR0ZLYkNzNVpDOXliejBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmI2Nzc2MDQtMjM1Yy00MzVlLTlmODctOWE1N2ZmNzhlZDFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a/kubeconfig?redacted=true method: GET response: - body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUUxcVJYcE5hbXQ2VGtadldFUlVUVEZOVkVGNFRXcEZlazFxYTNwT1JtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUWs5RWVVaHdZbk15VEVsS1ozRnRDbkV5WjFvMWRWUkJZVlZpYW5WalYzbDJNRGxwTDNoTmFURkRjRVpETDJsdmMwdGhMMVpSWjJKd1FuWkJaV051WWpGd2VVVldVazB2YUc1a2FYZGlXaklLU1c0MWFrNHlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYmtoeFMwbEhObGQ2UjFkdFVVaHlWa00wYTBwRlIzRkJSa3BxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbFF4VURSakNqVnhNRFkyYjJwU2JUVnljSFZKVjNWaVZHSkJMMjFUTHpsMlFVbzRLMFV2TWxOellXcG5TV2RPYVVOblJGTTBZVEk1V0ZORlJuQmxjVVkxVEdJemQyUUtUM0ZyZUhCUU1XSjZSWEJ3YkRSWU9FWlVNRDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjFlZThjMDctYTY5MC00MGM4LThlYTItYjQ5MDAyZWIxZDhlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdVdRUUVwcDNLMTZvSG5uYkZHeERLQzRJQTVsSUN1OVRoWE1kN0RJNjZyNmxqMk1ad3cxVThpSms="}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5SRkY1VDBadldFUlVUVEZOVkVGNFRrUkJOVTFFVVhsUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUzBWSVFTdFdOMk0xUkdaUk1Fc3pDbkJ5VW0xTlpuRjZZa0Z0VUd4RFJWSlFSekJ0YUhOaGQxWTJjVFZXTm5WdGIxVTJkV3c1TTAxM2IxaFJiSE42TlZWRVNtSlpRMUV2V2s5S2FIRnpibkFLTUU5R2EweHNSMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYWtKNE1sSllNM1F5UVdSbFdYQXdlbmhwTUVKd09XNVlWMEpFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbkZRWlRFMENuaHlSV1k1ZUUxaldsSjJURzE1WkdaVmExSmFTWGxZVm5WSWVpdFJUVlJFWjI5M0x5dDNTV2RrZW5wWWRtSmhWbGg1Y0ZwM2RrUnhRbGh4YTNKWFluUUtkbnBTZVM5UFVtTjVhR0ZLYkNzNVpDOXliejBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmI2Nzc2MDQtMjM1Yy00MzVlLTlmODctOWE1N2ZmNzhlZDFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1818" + - "1762" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,63 +1509,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc1e5efd-7b17-45fa-8a93-2d5360b91c86 + - 819fd09e-4e4a-4c3f-b320-6af83b936592 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5SRkY1VDBadldFUlVUVEZOVkVGNFRrUkJOVTFFVVhsUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUzBWSVFTdFdOMk0xUkdaUk1Fc3pDbkJ5VW0xTlpuRjZZa0Z0VUd4RFJWSlFSekJ0YUhOaGQxWTJjVFZXTm5WdGIxVTJkV3c1TTAxM2IxaFJiSE42TlZWRVNtSlpRMUV2V2s5S2FIRnpibkFLTUU5R2EweHNSMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYWtKNE1sSllNM1F5UVdSbFdYQXdlbmhwTUVKd09XNVlWMEpFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbkZRWlRFMENuaHlSV1k1ZUUxaldsSjJURzE1WkdaVmExSmFTWGxZVm5WSWVpdFJUVlJFWjI5M0x5dDNTV2RrZW5wWWRtSmhWbGg1Y0ZwM2RrUnhRbGh4YTNKWFluUUtkbnBTZVM5UFVtTjVhR0ZLYkNzNVpDOXliejBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmI2Nzc2MDQtMjM1Yy00MzVlLTlmODctOWE1N2ZmNzhlZDFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a/kubeconfig?redacted=true + method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", - "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", - "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", - "service_dns_ip":"10.32.0.10"}' + body: '{"name":"kubeconfig", "content_type":"application/octet-stream", "content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZUU1RVFUVk5SRkY1VDBadldFUlVUVEZOVkVGNFRrUkJOVTFFVVhsUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDUzBWSVFTdFdOMk0xUkdaUk1Fc3pDbkJ5VW0xTlpuRjZZa0Z0VUd4RFJWSlFSekJ0YUhOaGQxWTJjVFZXTm5WdGIxVTJkV3c1TTAxM2IxaFJiSE42TlZWRVNtSlpRMUV2V2s5S2FIRnpibkFLTUU5R2EweHNSMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTYWtKNE1sSllNM1F5UVdSbFdYQXdlbmhwTUVKd09XNVlWMEpFUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbkZRWlRFMENuaHlSV1k1ZUUxaldsSjJURzE1WkdaVmExSmFTWGxZVm5WSWVpdFJUVlJFWjI5M0x5dDNTV2RrZW5wWWRtSmhWbGg1Y0ZwM2RrUnhRbGh4YTNKWFluUUtkbnBTZVM5UFVtTjVhR0ZLYkNzNVpDOXliejBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmI2Nzc2MDQtMjM1Yy00MzVlLTlmODctOWE1N2ZmNzhlZDFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZSIKICAgIHVzZXI6IGNsaS10ZXN0LXVuaW5zdGFsbC1rdWJlY29uZmlnLW1lcmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AY2xpLXRlc3QtdW5pbnN0YWxsLWt1YmVjb25maWctbWVyZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbGktdGVzdC11bmluc3RhbGwta3ViZWNvbmZpZy1tZXJnZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUkVEQUNURURfVE9LRU4="}' headers: Content-Length: - - "1607" + - "1762" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1543,17 +1541,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9acb1453-86ec-4937-b720-b45e71e54e6a + - 2a8ac481-f18f-4037-907e-4175ab9a36ae status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1561,22 +1559,23 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a?with_additional_resources=true + method: DELETE response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1584,20 +1583,21 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", - "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", + "new_images_enabled":false, "pod_cidr":"100.64.0.0/15", "service_cidr":"10.32.0.0/20", + "service_dns_ip":"10.32.0.10"}' headers: Content-Length: - - "1571" + - "1607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:06 GMT + - Wed, 15 Oct 2025 09:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,17 +1605,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bd306b5-d221-4ed7-a477-02dbe6452839 + - ad14407c-50f3-44d2-8fb2-caf5d305d566 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1623,22 +1623,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1646,8 +1646,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1657,9 +1657,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:11 GMT + - Wed, 15 Oct 2025 09:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,17 +1667,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60a2c38e-1dc4-482a-875f-e00bb5442786 + - e0eb414b-f7bf-414c-9800-16102f29f270 status: 200 OK code: 200 duration: "" - request: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1685,22 +1685,22 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"region":"fr-par", "id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", - "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-13T13:29:34.721190Z", - "updated_at":"2025-10-13T13:31:06.424956Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", + body: '{"region":"fr-par", "id":"bb677604-235c-435e-9f87-9a57ff78ed1a", "organization_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", + "project_id":"9e9389ca-503a-44c3-bbd5-7a3812303bb0", "created_at":"2025-10-15T09:04:28.432186Z", + "updated_at":"2025-10-15T09:06:05.032243Z", "type":"kapsule", "name":"cli-test-uninstall-kubeconfig-merge", "description":"", "status":"deleting", "version":"1.32.3", "cni":"cilium", "tags":[], - "cluster_url":"https://61ee8c07-a690-40c8-8ea2-b49002eb1d8e.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.61ee8c07-a690-40c8-8ea2-b49002eb1d8e.nodes.k8s.fr-par.scw.cloud", + "cluster_url":"https://bb677604-235c-435e-9f87-9a57ff78ed1a.api.k8s.fr-par.scw.cloud:6443", + "dns_wildcard":"*.bb677604-235c-435e-9f87-9a57ff78ed1a.nodes.k8s.fr-par.scw.cloud", "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, @@ -1708,8 +1708,8 @@ interactions: "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, "upgrade_available":true, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"9c6f9c4a-a1b0-4aee-b093-c1eae68bb80f", - "commitment_ends_at":"2025-10-13T13:29:34.721200Z", "acl_available":true, "iam_nodes_group_id":"54657d2f-244c-4c95-9676-7a233f3ad7dd", + "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"b2ff1c3b-0b9f-4605-af03-6a440f203957", + "commitment_ends_at":"2025-10-15T09:04:28.432195Z", "acl_available":true, "iam_nodes_group_id":"0080c472-f5b1-4f77-9a1a-55eb5d85593c", "new_images_enabled":true, "pod_cidr":"", "service_cidr":"", "service_dns_ip":""}' headers: Content-Length: @@ -1719,9 +1719,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:16 GMT + - Wed, 15 Oct 2025 09:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1729,20 +1729,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c1171db-271f-4d75-b411-817c798440e3 + - 810a8bb1-7b36-49c8-b301-7caa240b1b1f status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"bb677604-235c-435e-9f87-9a57ff78ed1a","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/61ee8c07-a690-40c8-8ea2-b49002eb1d8e + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bb677604-235c-435e-9f87-9a57ff78ed1a method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"61ee8c07-a690-40c8-8ea2-b49002eb1d8e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"bb677604-235c-435e-9f87-9a57ff78ed1a","type":"not_found"}' headers: Content-Length: - "128" @@ -1751,9 +1751,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 13 Oct 2025 13:31:21 GMT + - Wed, 15 Oct 2025 09:06:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1761,7 +1761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cbb216a-9657-4879-9e55-6d8d56eb485a + - 6ac592aa-b24d-48f7-9a24-11b66870c858 status: 404 Not Found code: 404 duration: ""